Exemplo n.º 1
0
 public async Task <List <WarehouseEntity> > GetByCompanyId(int companyId)
 {
     try
     {
         return(await warehouseRepository.GetByCompanyId(companyId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }