DepartmentProject/DepartmentPortal/Department/DepartmentContract/Services/IGenericEntityService/IClassroomService.cs

10 lines
342 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace DepartmentContract.Services.IGenericEntityService
{
/// <summary>
/// Хранение аудиторий
/// </summary>
public interface IClassroomService : IGenericEntityService<ClassroomGetBindingModel, ClassroomSetBindingModel> { }
}