Project 1: BackgroundService has a Job named RequisitionGeneratingJob :
public class RequisitionGeneratingJob : AsyncBackgroundJob<RequisitionGeneratingArgs>, ITransientDependency
{
private readonly IRequisitionAppService _requisitionAppService;
public RequisitionGeneratingJob(IRequisitionAppService requisitionAppService)
{
_requisitionAppService = requisitionAppService;
}
public override async Task ExecuteAsync(RequisitionGeneratingArgs args)
{
await _requisitionAppService.GenerateAsync(new GenerateRequisitionInput()
{
TenantId = args.TenantId,
Months = 4,
NextMonday = args.NextMonday
});
}
}
Project 2: Order Service has a service named RequisitionAppService
It will got the error when calling _requisitionAppService.GenerateAsync if the remove service call over than 90 seconds.
Hi,
We will fix the problem today.
any updates?
Exactly what I am looking for, many thanks! Can you guide me how to sign in as another user by using the Angular client? How can I find the Angular code for this feature? thanks.