This commit is contained in:
Programmist73 2023-04-01 13:17:09 +04:00
commit 000dc4d8ac
6 changed files with 68 additions and 3 deletions

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 CardSearchModel
{
public int? Id { get; set; }
public int? ClientID { get; set; }
public int? AccountId { get; set; }
public string? Number { get; set; }
public string? CVC { get; set; }
public DateTime? Period { get; set; }
}
}

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 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; }
}
}

View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.SearchModels
{
public class DebitingSearchModel
{
public int? Id { get; set; }
public int? CardId { get; set; }
public int? Sum { get; set; }
public DateTime? date { get; set; }
}
}

View File

@ -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
{ {

View File

@ -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
{ {

View File

@ -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
{ {