2021-07-21 15:22:58 +05:00
|
|
|
|
namespace AsbCloudApp.Data
|
|
|
|
|
{
|
2022-06-01 17:52:26 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// DTO компании
|
|
|
|
|
/// </summary>
|
2021-09-10 11:28:57 +05:00
|
|
|
|
public class CompanyDto : IId
|
2021-07-21 15:22:58 +05:00
|
|
|
|
{
|
2022-06-01 17:52:26 +05:00
|
|
|
|
/// <inheritdoc/>
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public int Id { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Название
|
|
|
|
|
/// </summary>
|
2021-07-21 15:22:58 +05:00
|
|
|
|
public string Caption { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// ИД типа компании
|
|
|
|
|
/// </summary>
|
2022-01-13 14:34:58 +05:00
|
|
|
|
public int IdCompanyType { get; set; }
|
2022-06-01 17:52:26 +05:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Название типа компании
|
|
|
|
|
/// </summary>
|
2021-08-31 18:01:26 +05:00
|
|
|
|
public string CompanyTypeCaption { get; set; }
|
2021-07-21 15:22:58 +05:00
|
|
|
|
}
|
|
|
|
|
}
|