public async Task <IHttpActionResult> GetAll() { return(Ok <TeamCollectionModel>(await services.GetAll())); }
public async Task <ActionResult> Index() { TeamCollectionModel model = await teamService.GetAll(); return(View(model)); }