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 CarTechnicalWorks { get;} } }