Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. using System.Collections.Generic;
  2. using System.ComponentModel.DataAnnotations;
  3. using Model.Entities;
  4. using TimeSheets.Models;
  5.  
  6. namespace InterCon.Models
  7. {
  8. public class AccountExecutiveViewModel
  9. {
  10. public int Id { get; set; }
  11.  
  12. [Display(Name = "Responsible Manager")]
  13. [Required(ErrorMessage = "Please enter the full name !", AllowEmptyStrings = false)]
  14. public string ResponsibleManager { get; set; }
  15.  
  16. [Display(Name = "EmailAddress")]
  17. public string EmailAddress { get; set; }
  18.  
  19. public List<AccountExecutive> Items { get; set; }
  20.  
  21. public string Search { get; set; }
  22.  
  23. public int CurrentPage { get; set; }
  24.  
  25. public int RowsPerPage { get; set; }
  26.  
  27. public List<SelectListOption> RowsPerPageList { get; set; }
  28.  
  29. public string Sort { get; set; }
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement