17 lines
445 B
C#

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; }
public Dictionary<int, ISaleModel> EmployeeSales { get; set; } = new();
}
}