ClientBindingModel

This commit is contained in:
shadowik 2023-04-01 08:29:52 +04:00
parent bef12f27e5
commit 9520f1e001
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,24 @@
using BankYouBankruptDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.BindingModels
{
internal class CardBindingModel : ICardModel
{
public int Id { get; set; }
public int ClientID { get; set; }
public int AccountId { get; set; }
public string Number { get; set; } = string.Empty;
public string CVC { get; set; } = string.Empty;
public DateTime Period { get; set; } = DateTime.Now;
}
}

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.BindingModels
{
internal class DebitingBindingModel
{
}
}