Добавление SearchModel кассира.

This commit is contained in:
Programmist73 2023-04-01 13:16:59 +04:00
parent 6651dc39a8
commit ab286f1bc2
4 changed files with 65 additions and 1 deletions

View File

@ -8,7 +8,6 @@
<ItemGroup> <ItemGroup>
<Folder Include="BusinessLogicsContacts\" /> <Folder Include="BusinessLogicsContacts\" />
<Folder Include="SearchModels\" />
<Folder Include="StoragesContracts\" /> <Folder Include="StoragesContracts\" />
</ItemGroup> </ItemGroup>

View File

@ -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 AccountSearchModel
{
public string AccountNumber { get; set; } = string.Empty;
public int CashierId { get; set; }
public int ClientId { get; set; }
public string PasswordAccount { get; set; } = string.Empty;
public double Balance { get; set; }
public DateTime? DateOpen { get; set; }
}
}

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.SearchModels
{
public class CashWithdrawalSearchModel
{
public int? AccountId { get; set; }
public int? Sum { get; set; }
public DateTime? DateOperation { get; set; }
}
}

View File

@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.SearchModels
{
public class CashierSearchModel
{
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; }
public string? Telephone { get; set; }
}
}