10 lines
337 B
C#
10 lines
337 B
C#
using DepartmentContract.BindingModels;
|
|
using ToolsModule.Interfaces;
|
|
|
|
namespace DepartmentContract.Services.IGenericEntityService
|
|
{
|
|
/// <summary>
|
|
/// Хранение аудиторий
|
|
/// </summary>
|
|
public interface IClassroomService : IGenericEntityService<ClassroomGetBindingModel, ClassroomSetBindingModel> { }
|
|
} |