Пример #1
0
 public Book Get(int cod)
 {
     try
     {
         return(_appService.Get(cod));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Пример #2
0
 public Task <BookDto> Get(Guid id)
 {
     return(_BookAppService.Get(id));
 }