CourseWork_Bank/Bank/BankDataModels/DataModels/IRoomModel.cs

14 lines
320 B
C#
Raw Normal View History


namespace BankDataModels.Models
{
public interface IRoomModel : IId
{
string RoomName { get; }
string RoomFrame { get; }
double RoomPrice { get; }
2023-05-21 17:01:50 +04:00
int ClientId { get; }
int AdditionsId { get; }
public Dictionary<int, ICreditModel> RoomCredits { get; }
}
}