17 lines
384 B
C#
Raw Normal View History

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; }
}
}