using CarRepairShopDataModels.Models; namespace CarRepairShopDataModels { public interface IShopModel : IId { string ShopName { get; } string Address { get; } DateTime DateOpen { get; } Dictionary ShopRepairs { get; } int MaxCapacity { get; } } }