CourseWork_Bank/Bank/BankDataModels/DataModels/IAdditionsModel.cs

11 lines
271 B
C#
Raw Permalink Normal View History

namespace BankDataModels.Models
{
2023-04-08 22:43:54 +04:00
public interface IAdditionsModel : IId
{
2023-04-09 12:14:52 +04:00
string AdditionsName { get; }
double AdditionsPrice { get; }
int ClercId { get; }
public Dictionary<int, IMemberModel> AdditionsMembers { get; }
}
}