CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/Models/ICashWithdrawal.cs

19 lines
326 B
C#

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