ClentSearcModels
This commit is contained in:
parent
675b8b33f0
commit
62ccbc49f4
@ -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,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; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user