17 lines
444 B
C#
17 lines
444 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> EmployeeSale { get; set; } = new();
|
|
}
|
|
} |