CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/Models/ICashWithdrawalModel.cs

19 lines
331 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
//выдача наличных
public interface ICashWithdrawalModel : IId
{
int AccountId { get; }
int Sum { get; }
DateTime DateOperation { get; }
}
}