Ejemplo n.º 1
0
 //Purchase Order
 public async Task <string> GeneratePurchaseOrderFromId(int headerId, string createdBy, int companyId, int userId)
 {
     try
     {
         return(await headerRepository.GeneratePurchaseOrderFromId(headerId, createdBy, companyId, userId));
     }
     catch (Exception e)
     {
         throw e;
     }
 }