Ejemplo n.º 1
0
 public async Task <int> UpdateReminderSummaryOutputed(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateReminderSummaryOutputedAsync(source.LoginUserId, source.ReminderOutputeds, source.Summaries, token);
Ejemplo n.º 2
0
 public async Task <IEnumerable <Reminder> > Create(ReminderSource source, CancellationToken token)
 => (await reminderProcessor.CreateAsync(source.CompanyId, source.LoginUserId, source.UseForeignCurrency, source.Items, source.Setting, source.SummarySettings, token)).ToArray();
Ejemplo n.º 3
0
 public async Task <IEnumerable <ReminderBilling> > GetReminderBillingForReprintByDestination(ReminderSource source, CancellationToken token)
 => (await reminderProcessor.GetReminderBillingItemsForReprintByDestinationAsync(source.CompanyId, source.ReminderOutputed, token)).ToArray();
Ejemplo n.º 4
0
 public async Task <IEnumerable <ReminderBilling> > GetReminderBillingForSummaryPrint(ReminderSource source, CancellationToken token)
 => (await reminderProcessor.GetReminderBillingItemsForSummaryPrintAsync(source.CompanyId, source.CustomerIds, token)).ToArray();
Ejemplo n.º 5
0
 public async Task <int> UpdateSummaryStatus(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateSummaryStatusAsync(source.LoginUserId, source.Summaries, token);
Ejemplo n.º 6
0
 public async Task <ActionResult <int> > UpdateReminderOutputed(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateReminderOutputedAsync(source.LoginUserId, source.ReminderOutputeds, token);
Ejemplo n.º 7
0
 public async Task <ActionResult <int> > UpdateStatus(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateStatusAsync(source.LoginUserId, source.Items, token);