spacyboy 9a0d8d4e50 + BindingModels
+ Edit DataModels
2024-04-26 21:27:52 +04:00

10 lines
268 B
C#

namespace CarCenterDataModels.Models
{
public interface IEmployeeModel : IId
{
string EmployeeFIO { get; }
string Specialization { get; }
int ManagerId { get; }
public Dictionary<int, ISaleModel> EmployeeSale { get; }
}
}