Ejemplo n.º 1
0
 public async Task <CostCenter> SaveCostCenter(CostCenter pCostCenter)
 {
     if (pCostCenter.Id == Guid.Empty)
     {
         return(await mAsyncCLient.AddCostCenterAsync(pCostCenter));
     }
     return(await mAsyncCLient.EditCostCenterAsync(pCostCenter));
 }
Ejemplo n.º 2
0
 public CostCenter EditCostCenter(CostCenter pCostCenter) => mBlue10Async.EditCostCenterAsync(pCostCenter).Sync();