41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using ModuleTools.Attributes;
|
||
using ModuleTools.BindingModels;
|
||
using System;
|
||
using System.ComponentModel.DataAnnotations;
|
||
|
||
namespace DepartmentBusinessLogic.BindingModels
|
||
{
|
||
/// <summary>
|
||
/// Получение связи преподавателя с должностью
|
||
/// </summary>
|
||
public class LecturerEmployeePostGetBindingModel : GetBindingModel
|
||
{
|
||
public Guid? LecturerId { get; set; }
|
||
|
||
public Guid? EmployeePostId { get; set; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// Сохранение связи преподавателя с должностью
|
||
/// </summary>
|
||
public class LecturerEmployeePostSetBindingModel : SetBindingModel
|
||
{
|
||
[Required(ErrorMessage = "required")]
|
||
[MapConfiguration("LecturerId")]
|
||
public Guid LecturerId { get; set; }
|
||
|
||
[Required(ErrorMessage = "required")]
|
||
[MapConfiguration("EmployeePostId")]
|
||
public Guid EmployeePostId { get; set; }
|
||
|
||
[Required(ErrorMessage = "required")]
|
||
[MapConfiguration("Rate")]
|
||
public decimal Rate { get; set; }
|
||
|
||
[MapConfiguration("IsInternalCombination")]
|
||
public bool IsInternalCombination { get; set; }
|
||
|
||
[MapConfiguration("IsExternalCombination")]
|
||
public bool IsExternalCombination { get; set; }
|
||
}
|
||
} |