Exemplo n.º 1
0
 public async Task<ActionResult> Listing(RealEstatePropertyViewModel vm)
 {
     try
     {
         if (ModelState.IsValid)
         {
             return null;
         }
         else
         {
             return null;
         }
     }
     catch (Exception)
     {
         throw;
     }
 }
Exemplo n.º 2
0
 public ActionResult Listing()
 {
     RealEstatePropertyViewModel vm = new RealEstatePropertyViewModel();
     return View(vm);
 }