10 lines
317 B
C#
10 lines
317 B
C#
|
using DepartmentBusinessLogic.BindingModels;
|
|||
|
using ModuleTools.Interfaces;
|
|||
|
|
|||
|
namespace DepartmentBusinessLogic.Interfaces
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение сотрудников
|
|||
|
/// </summary>
|
|||
|
public interface IEmployeeService : IGenerticEntityService<EmployeeGetBindingModel, EmployeeSetBindingModel> { }
|
|||
|
}
|