public async Task <IActionResult> GetAll() { var result = await _services.GetAllAsync(); if (result.IsValid) { return(Ok(result.Result)); } return(BadRequest(result.ErrorsList)); }
public async Task <IActionResult> Index() { var result = await _services.GetAllAsync(); if (result.IsValid) { return(View(result.Result)); } TempData["ErrorsList"] = result.ErrorsList; return(View()); }
public async Task <SelectList> GetTravel(string hashIdSelectedValue = null) { var travel = await _travelService.GetAllAsync(); return(travel.IsValid ? new SelectList(travel.Result, "HashId", "Name", hashIdSelectedValue) : null); }
public async Task <IActionResult> GetAll() { return(Ok(await _services.GetAllAsync())); }
public async Task <IActionResult> Index() { var result = await _services.GetAllAsync(); return(View(result.Result)); }