22 lines
568 B
C#
22 lines
568 B
C#
using BankDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankContracts.BindingModels
|
|
{
|
|
public class PaymentBindingModel : IPaymentModel
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime PaymentDate {get;set;} = DateTime.Now;
|
|
|
|
public Dictionary<int, IDealModel> DealPayments { get; set; } = new();
|
|
|
|
public Dictionary<int, ICurrencyModel> CurrencyPayments { get; set; } = new();
|
|
|
|
public int OperatorId { get; set; }
|
|
}
|
|
}
|