コード例 #1
0
 public async Task <ICollection <Vehicle> > Index()
 {
     return(await _entityService.All <Vehicle>());
 }
コード例 #2
0
 public async Task <ICollection <Model> > Index()
 {
     return(await _entityService.All <Model>());
 }
コード例 #3
0
 public async Task <ICollection <Person> > Index()
 {
     return(await _entityService.All <Person>());
 }
コード例 #4
0
 public async Task <ICollection <Checklist> > Index()
 {
     return(await _entityService.All <Checklist>());
 }
コード例 #5
0
 public async Task <ICollection <Category> > Index()
 {
     return(await _entityService.All <Category>());
 }
コード例 #6
0
 public async Task <ICollection <Brand> > Index()
 {
     return(await _entityService.All <Brand>());
 }