2024-04-26 19:51:43 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace CarCenterDataModels.Models
|
|
|
|
|
{
|
|
|
|
|
public interface IEquipmentModel : IId
|
|
|
|
|
{
|
|
|
|
|
string EquipmentName { get; }
|
2024-04-26 19:58:18 +04:00
|
|
|
|
double EquipmentPrice { get; }
|
2024-04-26 19:51:43 +04:00
|
|
|
|
int AdministratorId { get; }
|
|
|
|
|
int? PreSaleWorkId { get; }
|
|
|
|
|
public Dictionary<int, ICarModel> EquipmentCars { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|