public DocumentController(
     SigningDbContext db,
     BlobStorageService blobStorageService)
 {
     _db = db;
     _blobStorageService = blobStorageService;
 }
Exemple #2
0
 public StatusModel(
     SigningDbContext db,
     IHttpClientFactory httpClientFactory)
 {
     _db         = db;
     _httpClient = httpClientFactory.CreateClient(HttpClients.Workflow);
 }
 public SignModel(
     SigningDbContext db,
     IConfiguration configuration,
     IHttpClientFactory httpClientFactory)
 {
     _db = db;
     _addSignEventUrl = configuration["Workflow:AddSignEventUrl"];
     _httpClient      = httpClientFactory.CreateClient(HttpClients.Workflow);
 }
Exemple #4
0
 public SigningWorkflow(
     SigningDbContext db,
     DocumentSigningService documentSigningService,
     IConfiguration configuration)
 {
     _db = db;
     _documentSigningService = documentSigningService;
     _configuration          = configuration;
 }
 public IndexModel(
     SigningDbContext db,
     IHttpClientFactory httpClientFactory,
     IConfiguration configuration,
     BlobStorageService blobStorageService)
 {
     _db                 = db;
     _httpClient         = httpClientFactory.CreateClient(HttpClients.Workflow);
     _workflowStartUrl   = configuration["Workflow:StartUrl"];
     _blobStorageService = blobStorageService;
 }
 public WaitForSignature(SigningDbContext db)
 {
     _db = db;
 }
Exemple #7
0
 public Cleanup(SigningDbContext db)
 {
     _db = db;
 }