namespace PlumbingRepairDataModels.Models { public interface IStoreModel : IId { public string StoreName { get; } public string StoreAdress { get; } DateTime OpeningDate { get; } Dictionary Works { get; } } }