// GET: Mobile public ActionResult Index() { ViewBag.Title = "Mobile"; return(View(_mobileRepository.GetAll())); }
public async Task <Object> GetAllMobiles() { return(await _mobileRepo.GetAll()); }