public async Task <IEnumerable <Subject> > GetSubjects()
 {
     return(await _service.GetEntity());
 }
 public async Task <IEnumerable <Country> > GetCountries()
 {
     return(await _service.GetEntity());
 }
Exemple #3
0
 public async Task <IEnumerable <Alloy> > GetAlloys()
 {
     return(await _service.GetEntity());
 }
 public async Task <IEnumerable <Shape> > GetShapes()
 {
     return(await _service.GetEntity());
 }
Exemple #5
0
 public async Task <IEnumerable <Currency> > GetCurrencies()
 {
     return(await _service.GetEntity());
 }