コード例 #1
0
 public async Task <int> UpdateReminderSummaryOutputed(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateReminderSummaryOutputedAsync(source.LoginUserId, source.ReminderOutputeds, source.Summaries, token);
コード例 #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();
コード例 #3
0
 public async Task <IEnumerable <ReminderBilling> > GetReminderBillingForReprintByDestination(ReminderSource source, CancellationToken token)
 => (await reminderProcessor.GetReminderBillingItemsForReprintByDestinationAsync(source.CompanyId, source.ReminderOutputed, token)).ToArray();
コード例 #4
0
 public async Task <IEnumerable <ReminderBilling> > GetReminderBillingForSummaryPrint(ReminderSource source, CancellationToken token)
 => (await reminderProcessor.GetReminderBillingItemsForSummaryPrintAsync(source.CompanyId, source.CustomerIds, token)).ToArray();
コード例 #5
0
 public async Task <int> UpdateSummaryStatus(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateSummaryStatusAsync(source.LoginUserId, source.Summaries, token);
コード例 #6
0
 public async Task <ActionResult <int> > UpdateReminderOutputed(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateReminderOutputedAsync(source.LoginUserId, source.ReminderOutputeds, token);
コード例 #7
0
 public async Task <ActionResult <int> > UpdateStatus(ReminderSource source, CancellationToken token)
 => await reminderProcessor.UpdateStatusAsync(source.LoginUserId, source.Items, token);