Ejemplo n.º 1
0
 public static ContactUsSearchDto ToDto(this ContactUSSearchViewModel source)
 {
     return(new ContactUsSearchDto
     {
         PageNumber = source.PageNumber,
         PageSize = source.PageSize
     });
 }
Ejemplo n.º 2
0
        public IActionResult Index(ContactUSSearchViewModel searchModel)
        {
            var data = _adminService.GetContactUs(searchModel.ToDto());

            return(View_Search(searchModel, data.ToViewModel()));
        }