Merge branch 'main' of http://student.git.athene.tech/shadowik/CourseWork_BankYouBankrupt
This commit is contained in:
commit
000dc4d8ac
@ -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; }
|
||||
}
|
||||
}
|
@ -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; }
|
||||
}
|
||||
}
|
@ -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; }
|
||||
}
|
||||
}
|
@ -6,7 +6,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PizzeriaContracts.ViewModels
|
||||
namespace BankYouBankruptContracts.ViewModels
|
||||
{
|
||||
public class CardViewModel : ICardModel
|
||||
{
|
||||
|
@ -6,7 +6,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PizzeriaContracts.ViewModels
|
||||
namespace BankYouBankruptContracts.ViewModels
|
||||
{
|
||||
public class CreditingViewModel : ICreditingModel
|
||||
{
|
||||
|
@ -6,7 +6,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PizzeriaContracts.ViewModels
|
||||
namespace BankYouBankruptContracts.ViewModels
|
||||
{
|
||||
public class DebitingViewModel : IDebitingModel
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user