public AccountController(ApplicationUserManager userManager,
                          ISecureDataFormat <AuthenticationTicket> accessTokenFormat,
                          ICorrespondenceService correspondenceService)
 {
     UserManager            = userManager;
     AccessTokenFormat      = accessTokenFormat;
     _correspondenceService = correspondenceService;
 }
 public ViewModelMapperHelper(ICatalogService catalogService,
                              ISignatureModelRepository signatureModelRepository,
                              IProxySiscorService proxySiscorService,
                              ICorrespondenceService correspondenceService)
 {
     _catalogService           = catalogService;
     _signatureModelRepository = signatureModelRepository;
     _proxySiscorService       = proxySiscorService;
     _correspondenceService    = correspondenceService;
 }
 public CorrespondenceViewController(
     ICatalogService catalogService,
     ICorrespondenceService correspondenceService,
     IProxySiscorService proxySiscorService,
     IOperationRepository operationRepository)
 {
     _catalogService        = catalogService;
     _correspondenceService = correspondenceService;
     _proxySiscorService    = proxySiscorService;
     _viewModelMapperHelper = new ViewModelMapperHelper(_catalogService, null, _proxySiscorService, _correspondenceService);
     _operationRepository   = operationRepository;
 }
Esempio n. 4
0
 public ResponseController(ICatalogService catalogService,
                           ISignatureModelRepository signatureModelRepository,
                           IProxySiscorService proxySiscorService,
                           ISiscorCorrespondenceRepository siscorCorrespondenceRepository,
                           IDocumentSiscorCorrespondenceRepository documentSiscorCorrespondenceRepository,
                           ICorrespondenceService correspondenceService,
                           IOperationDataRepository operationDataRepository,
                           IOperationRepository operationRepository)
 {
     _catalogService                         = catalogService;
     _signatureModelRepository               = signatureModelRepository;
     _proxySiscorService                     = proxySiscorService;
     _viewModelMapperHelper                  = new ViewModelMapperHelper(_catalogService, _signatureModelRepository, _proxySiscorService, _correspondenceService);
     _siscorCorrespondenceRepository         = siscorCorrespondenceRepository;
     _documentSiscorCorrespondenceRepository = documentSiscorCorrespondenceRepository;
     _correspondenceService                  = correspondenceService;
     _operationDataRepository                = operationDataRepository;
     _operationRepository                    = operationRepository;
 }
 public AccountController(ICorrespondenceService correspondenceService)
 {
     _correspondenceService = correspondenceService;
 }
Esempio n. 6
0
 public ManageInvitationController(IContextFactory contextFactory, IMetricHandler metricHandler, ICorrespondenceService correspondenceService)
     : base(contextFactory, metricHandler)
 {
     _correspondenceService = correspondenceService;
 }
Esempio n. 7
0
 public ManageInvitationController(ICorrespondenceService correspondenceService)
     : base()
 {
     _correspondenceService = correspondenceService;
 }
Esempio n. 8
0
 public PollController(ICorrespondenceService correspondenceService)
 {
     _correspondenceService = correspondenceService;
 }
Esempio n. 9
0
 public CorrespondenceController(IFilterService filterService, ICorrespondenceService correspondenceService)
 {
     _filterService         = filterService;
     _correspondenceService = correspondenceService;
 }