11 lines
280 B
C#
11 lines
280 B
C#
|
namespace PlumbingRepairDataModels.Models
|
|||
|
{
|
|||
|
public interface IStoreModel : IId
|
|||
|
{
|
|||
|
public string StoreName { get; }
|
|||
|
public string StoreAdress { get; }
|
|||
|
DateTime OpeningDate { get; }
|
|||
|
Dictionary<int, (IWorkModel, int)> Works { get; }
|
|||
|
}
|
|||
|
}
|