ClientSearchModels
This commit is contained in:
parent
fb7acd1dec
commit
91834d247c
@ -8,7 +8,6 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="BusinessLogicsContacts\" />
|
<Folder Include="BusinessLogicsContacts\" />
|
||||||
<Folder Include="SearchModels\" />
|
|
||||||
<Folder Include="StoragesContracts\" />
|
<Folder Include="StoragesContracts\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace BankYouBankruptContracts.SearchModels
|
||||||
|
{
|
||||||
|
public class ClientSearchModel
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
|
||||||
|
public string? Name { get; set; }
|
||||||
|
|
||||||
|
public string? Surname { get; set; }
|
||||||
|
|
||||||
|
public string? Patronymic { get; set; }
|
||||||
|
|
||||||
|
public string? Email { get; set; }
|
||||||
|
|
||||||
|
public string? Password { get; set; }
|
||||||
|
}
|
||||||
|
}
|
@ -6,7 +6,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace PizzeriaContracts.ViewModels
|
namespace BankYouBankruptContracts.ViewModels
|
||||||
{
|
{
|
||||||
public class CardViewModel : ICardModel
|
public class CardViewModel : ICardModel
|
||||||
{
|
{
|
||||||
|
@ -6,7 +6,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace PizzeriaContracts.ViewModels
|
namespace BankYouBankruptContracts.ViewModels
|
||||||
{
|
{
|
||||||
public class CreditingViewModel : ICreditingModel
|
public class CreditingViewModel : ICreditingModel
|
||||||
{
|
{
|
||||||
|
@ -6,7 +6,7 @@ using System.Linq;
|
|||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace PizzeriaContracts.ViewModels
|
namespace BankYouBankruptContracts.ViewModels
|
||||||
{
|
{
|
||||||
public class DebitingViewModel : IDebitingModel
|
public class DebitingViewModel : IDebitingModel
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user