23 lines
489 B
C#
23 lines
489 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace STODataModels
|
|||
|
{
|
|||
|
public interface ICarModel: IId
|
|||
|
{
|
|||
|
public int Id { get; }
|
|||
|
|
|||
|
string CarNumber { get; }
|
|||
|
|
|||
|
string CarBrand { get;}
|
|||
|
|
|||
|
string CarModel { get;}
|
|||
|
DateTime Year { get;}
|
|||
|
int ClientId { get; }
|
|||
|
Dictionary<int, (ITechnicalWorkModel, int)> CarTechnicalWorks { get;}
|
|||
|
}
|
|||
|
}
|