17 lines
384 B
C#
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; }
|
|
}
|
|
}
|