ScientificReport
DepartmentIndexModel.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace ScientificReport.DTO.Models.Department
4 {
6  {
7  public string TitleFilter { get; set; }
8 
9  public DAL.Entities.Department.SortByOption? SortBy { get; set; }
10 
11  public IEnumerable<ScientificReport.DAL.Entities.Department> Departments { get; set; }
12 
14 
15  public DepartmentIndexModel(IEnumerable<DAL.Entities.Department> departments)
16  {
17  Departments = departments;
18  }
19  }
20 }
DepartmentIndexModel(IEnumerable< DAL.Entities.Department > departments)