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 EmployeeSale { get; set; } = new(); } }