11 lines
269 B
C#
Raw Normal View History

2024-04-26 20:20:44 +04:00
namespace CarCenterDataModels.Models
{
public interface IEmployeeModel : IId
{
string EmployeeFIO { get; }
string Specialization { get; }
int ManagerId { get; }
public Dictionary<int, ISaleModel> EmployeeSale { get; }
}
}