Пример #1
0
 public async Task ReBuildSalesReports()
 {
     using (var t = new AllocationsClient())
     {
         await t.ReBuildSalesReports().ConfigureAwait(false);
     }
 }
Пример #2
0
 public async Task AllocateSales(bool itemDescriptionContainsAsycudaAttribute)
 {
     using (var t = new AllocationsClient())
     {
         await t.AllocateSales(itemDescriptionContainsAsycudaAttribute).ConfigureAwait(false);
     }
 }
Пример #3
0
 public async Task ClearAllocations()
 {
     using (var t = new AllocationsClient())
     {
         await t.ClearAllAllocations().ConfigureAwait(false);
     }
 }
Пример #4
0
 public async Task CreateIncompOPS(string filterExpression, int asycudaDocumentSetId)
 {
     using (var t = new AllocationsClient())
     {
         await t.CreateIncompOPS(filterExpression, asycudaDocumentSetId).ConfigureAwait(false);
     }
 }
Пример #5
0
 public async Task ClearAllocations(string filterExpression)
 {
     using (var t = new AllocationsClient())
     {
         await t.ClearAllocationsByFilter(filterExpression).ConfigureAwait(false);
     }
 }
Пример #6
0
 public async Task ClearAllocations(IEnumerable <AsycudaSalesAllocationsEx> alst)
 {
     using (var t = new AllocationsClient())
     {
         await t.ClearAllocations(alst.Select(x => x.AllocationId)).ConfigureAwait(false);
     }
 }
Пример #7
0
 public async Task ManuallyAllocate(int allocationId, int previousDocumentItemId)
 {
     using (var t = new AllocationsClient())
     {
         await t.ManuallyAllocate(allocationId, previousDocumentItemId).ConfigureAwait(false);
     }
 }
Пример #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);
     }
 }