11 lines
502 B
C#
11 lines
502 B
C#
|
using DepartmentContract.BindingModels;
|
|||
|
using DepartmentContract.ViewModels;
|
|||
|
using ToolsModule.Interfaces;
|
|||
|
|
|||
|
namespace DepartmentContract.Logics.IGenericEntityLogic
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Логика работы с цчеными степенями
|
|||
|
/// </summary>
|
|||
|
public interface ILecturerAcademicDegreeLogic : IGenericEntityLogic<LecturerAcademicDegreeGetBindingModel, LecturerAcademicDegreeSetBindingModel, LecturerAcademicDegreeListViewModel, LecturerAcademicDegreeViewModel> { }
|
|||
|
}
|