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; }
|
|
|
|
|
}
|
2024-04-26 21:27:52 +04:00
|
|
|
|
}
|