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

10 lines
383 B
C#
Raw Normal View History

using DepartmentContract.BindingModels;
using ToolsModule.Interfaces;
namespace DepartmentContract.Services.IGenericEntityService
{
/// <summary>
/// Хранение нправлений обучений
/// </summary>
public interface IEducationDirectionService : IGenericEntityService<EducationDirectionGetBindingModel, EducationDirectionSetBindingModel> { }
}