2024-04-26 21:27:52 +04:00
|
|
|
|
using CarCenterDataModels.Models;
|
|
|
|
|
|
|
|
|
|
namespace CarCenterContracts.BindingModels
|
|
|
|
|
{
|
|
|
|
|
public class EmployeeBindingModel : IEmployeeModel
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string EmployeeFIO { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public string Specialization { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
public int ManagerId { get; set; }
|
|
|
|
|
|
2024-04-28 22:10:32 +04:00
|
|
|
|
public Dictionary<int, ISaleModel> EmployeeSales { get; set; } = new();
|
2024-04-26 21:27:52 +04:00
|
|
|
|
}
|
|
|
|
|
}
|