public async Task <ICollection <Vehicle> > Index()
 {
     return(await _entityService.All <Vehicle>());
 }
Exemplo n.º 2
0
 public async Task <ICollection <Model> > Index()
 {
     return(await _entityService.All <Model>());
 }
Exemplo n.º 3
0
 public async Task <ICollection <Person> > Index()
 {
     return(await _entityService.All <Person>());
 }
Exemplo n.º 4
0
 public async Task <ICollection <Checklist> > Index()
 {
     return(await _entityService.All <Checklist>());
 }
 public async Task <ICollection <Category> > Index()
 {
     return(await _entityService.All <Category>());
 }
 public async Task <ICollection <Brand> > Index()
 {
     return(await _entityService.All <Brand>());
 }