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