PIbd-21_Yakovlev_M.G._CarRe.../CarRepairShop/CarRepairShopDataModels/Models/IShopModel.cs

17 lines
384 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CarRepairShopDataModels.Models
{
public interface IShopModel : IId
{
string ShopName { get; }
string ShopAddress { get; }
DateTime DateOpen { get; }
Dictionary<int,(IRepairModel, int)> ShopRepairs { get; }
}
}