17 lines
376 B
C#
17 lines
376 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AutomobilePlantDataModels.Models
|
|
{
|
|
public interface IShopModel : IId
|
|
{
|
|
string Name { get; }
|
|
string Address { get; }
|
|
DateTime OpeningDate { get; }
|
|
Dictionary<int, (ICarModel, int)> ShopCars { get; }
|
|
}
|
|
}
|