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