CourseWork_Bank/Bank/BankContracts/BindingModels/PurchaseBindingModel.cs

19 lines
532 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankContracts.BindingModels
{
2024-04-28 21:34:43 +04:00
internal class PurchaseBindingModel : IPurchaseModel
{
2024-04-28 21:34:43 +04:00
public int ClientId { get; set; }
public DateOnly DatePurchase { get; set; }
public Dictionary<int, OperationByPurchaseModel> OperationsModel { get; set; } = new();
public List<CostByPurchaseModel> CostsModel { get; set; } = new();
public int Id { get; set; }
}
}