public ObjectActionsController(
     SwiftClientService swiftClientService,
     CookieTokenService tokenService,
     IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
 {
     _SwiftService = swiftClientService;
     _TokenService = tokenService;
 }
Exemple #2
0
 public UploadController(
     SwiftClientService swiftClientService,
     CookieTokenService tokenService,
     UploadService uploadService,
     IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
 {
     _SwiftClientService = swiftClientService;
     _TokenService       = tokenService;
     _UploadService      = uploadService;
 }