2022-03-19 22:48:13 +04:00
|
|
|
|
using DepartmentContract.BindingModels;
|
|
|
|
|
using DepartmentContract.ViewModels;
|
2022-12-19 22:12:03 +04:00
|
|
|
|
using System.Threading.Tasks;
|
2022-03-20 10:10:44 +04:00
|
|
|
|
using ToolsModule.ManagmentEntity;
|
2022-03-19 22:48:13 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentContract.Logics.IGenericEntityLogic
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Логика работы с учебными группами
|
|
|
|
|
/// </summary>
|
2022-12-19 22:12:03 +04:00
|
|
|
|
public interface IStudentGroupLogic : IGenericEntityLogic<StudentGroupGetBindingModel, StudentGroupSetBindingModel, StudentGroupListViewModel, StudentGroupViewModel>
|
|
|
|
|
{
|
|
|
|
|
Task<bool> SaveToWord(StudentGroupSaveToWordBindingModel model);
|
|
|
|
|
}
|
2022-03-19 22:48:13 +04:00
|
|
|
|
}
|