2023-04-22 14:12:21 +03:00
|
|
|
|
using DataModels.Models;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Contracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class CarBM : ICar
|
|
|
|
|
{
|
|
|
|
|
public string Model { get; set; } = string.Empty;
|
2023-05-06 01:31:48 +03:00
|
|
|
|
public string oldModel { get; set; } = string.Empty ;
|
|
|
|
|
public string number { get; set; } = string.Empty;
|
2023-04-22 14:12:21 +03:00
|
|
|
|
public int Tonnage { get; set; }
|
|
|
|
|
|
2023-04-22 18:42:51 +03:00
|
|
|
|
public int? StatusId { get; set; }
|
2023-04-22 14:12:21 +03:00
|
|
|
|
|
2023-05-05 20:47:09 +03:00
|
|
|
|
public string? StatusTitle { get; set; } = string.Empty;
|
2023-04-22 14:12:21 +03:00
|
|
|
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|