2021-04-03 13:41:19 +04:00
|
|
|
|
using DepartmentBusinessLogic.BindingModels;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Interfaces;
|
2021-04-03 13:41:19 +04:00
|
|
|
|
|
|
|
|
|
namespace DepartmentBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение аудиторий
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IClassroomService : IGenerticEntityService<ClassroomGetBindingModel, ClassroomSetBindingModel> { }
|
|
|
|
|
}
|