PIbd-23_Minhasapov_R.H._Aut.../AutomobilePlant/AutomobilePlantDataModels/Models/IShopModel.cs

18 lines
410 B
C#
Raw Normal View History

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; }
2023-03-25 22:45:18 +04:00
DateTime OpeningDate { get; }
Dictionary<int, (ICarModel, int)> ShopCars { get; }
int MaxCountCars { get; }
}
}