Ejemplo n.º 1
0
 public List <Edition> Get()
 {
     try
     {
         return(_blc.GetEditions());
     }
     catch (Exception ex)
     {
         throw new HttpRequestException(ex.Message);
     }
 }
Ejemplo n.º 2
0
 public async Task <List <Edition> > Get()
 {
     try
     {
         return(await _blc.GetEditions());
     }
     catch (Exception ex)
     {
         throw new HttpRequestException(ex.Message);
     }
 }