ClentSearcModels

This commit is contained in:
shadowik 2023-04-01 09:09:52 +04:00
parent 675b8b33f0
commit 62ccbc49f4
2 changed files with 42 additions and 0 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,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; }
}
}