Ejemplo n.º 1
0
 public async Task <IEnumerable <BillingInvoice> > GetR(BillingInvoiceSearch option)
 {
     return(await hubContext.DoAsync(option.ConnectionId, async (notifier, token) => {
         var result = (await billingInvoiceProcessor.GetAsync(option, token)).ToArray();
         notifier?.UpdateState();
         return result;
     }));
 }
Ejemplo n.º 2
0
 public async Task <ActionResult <IEnumerable <Collation> > > CollateR(CollationSearch option)
 => await hubContext.DoAsync(option.ConnectionId, async (notifier, token) => (await collationProcessor.CollateAsync(option, token, notifier)).ToArray());
Ejemplo n.º 3
0
 public async Task <ActionResult <IEnumerable <MatchingHistory> > > GetR(MatchingHistorySearch option)
 => await hubContext.DoAsync(option.ConnectionId, async (notifier, token)
                             => (await matchingHistorySearchProcessor.GetAsync(option, token, notifier)).ToArray());
Ejemplo n.º 4
0
 public async Task <ActionResult <IEnumerable <CreditAgingList> > > GetR(CreditAgingListSearch option)
 => await hubContext.DoAsync(option.ConnectionId, async (notifier, token)
                             => (await creditAgingListProcessor.GetAsync(option, notifier, token)).ToArray());
Ejemplo n.º 5
0
 public async Task <IEnumerable <BillingAgingList> > GetR(BillingAgingListSearch option)
 => await hubContext.DoAsync(option.ConnectionId, async (notifier, token)
                             => (await billingAgingListProcessor.GetAsync(option, notifier, token)).ToArray());
Ejemplo n.º 6
0
 public async Task <ActionResult <IEnumerable <CustomerLedger> > > GetR(CustomerLedgerSearch option)
 => await hubContext.DoAsync(option.ConnectionId, async (notifier, token)
                             => (await customerLedgerProcessor.GetAsync(option, token, notifier)).ToArray());
Ejemplo n.º 7
0
 public async Task <ActionResult <IEnumerable <CollectionSchedule> > > GetR(CollectionScheduleSearch option)
 => await hubContext.DoAsync(option.ConnectionId, async (notifier, token)
                             => (await collectionScheduleProcessor.GetAsync(option, token, notifier)).ToArray());