Esempio n. 1
0
 public async Task ReBuildSalesReports()
 {
     using (var t = new AllocationsClient())
     {
         await t.ReBuildSalesReports().ConfigureAwait(false);
     }
 }
Esempio n. 2
0
 public async Task AllocateSales(bool itemDescriptionContainsAsycudaAttribute)
 {
     using (var t = new AllocationsClient())
     {
         await t.AllocateSales(itemDescriptionContainsAsycudaAttribute).ConfigureAwait(false);
     }
 }
Esempio n. 3
0
 public async Task ClearAllocations()
 {
     using (var t = new AllocationsClient())
     {
         await t.ClearAllAllocations().ConfigureAwait(false);
     }
 }
Esempio n. 4
0
 public async Task CreateIncompOPS(string filterExpression, int asycudaDocumentSetId)
 {
     using (var t = new AllocationsClient())
     {
         await t.CreateIncompOPS(filterExpression, asycudaDocumentSetId).ConfigureAwait(false);
     }
 }
Esempio n. 5
0
 public async Task ClearAllocations(string filterExpression)
 {
     using (var t = new AllocationsClient())
     {
         await t.ClearAllocationsByFilter(filterExpression).ConfigureAwait(false);
     }
 }
Esempio n. 6
0
 public async Task ClearAllocations(IEnumerable <AsycudaSalesAllocationsEx> alst)
 {
     using (var t = new AllocationsClient())
     {
         await t.ClearAllocations(alst.Select(x => x.AllocationId)).ConfigureAwait(false);
     }
 }
Esempio n. 7
0
 public async Task ManuallyAllocate(int allocationId, int previousDocumentItemId)
 {
     using (var t = new AllocationsClient())
     {
         await t.ManuallyAllocate(allocationId, previousDocumentItemId).ConfigureAwait(false);
     }
 }
Esempio n. 8
0
 public async Task CreateEx9(string filterExpression, bool perIM7, bool process7100, bool applyCurrentChecks, int asycudaDocumentSetId)
 {
     using (var t = new AllocationsClient())
     {
         await t.CreateEx9(filterExpression, perIM7, process7100, applyCurrentChecks, asycudaDocumentSetId).ConfigureAwait(false);
     }
 }