Esempio n. 1
0
 public UserController(IUser userBL, IUserRepository userRepository, IEncryption encryptionService, IARCommonServices arCommonService)
 {
     _userRepository    = userRepository;
     _userBL            = userBL;
     _encryptionService = encryptionService;
     _arCommonService   = arCommonService;
 }
Esempio n. 2
0
 public ExportExcelToDatabaseController(IDepartment department,
                                        IFile file,
                                        IPendingUpload pendingUpload,
                                        ILienTempTable lienTempTable,
                                        IStorageServices excelUploadService,
                                        IARCommonServices arCommonService)
 {
     _department         = department;
     _file               = file;
     _pendingUpload      = pendingUpload;
     _lienTempTable      = lienTempTable;
     _excelUploadService = excelUploadService;
     _arCommonService    = arCommonService;
 }
Esempio n. 3
0
 public FileController(IFile fileBL, IAdjuster adjusterBL, IEmployer employerBL, IInsurer insurerBL, IInsurerBranch insurerBranchBL, IDepartment department, IInvoice invoice, IPayment payment, IStorageServices storageServices
                       , IARCommonServices arCommonService, IInvoiceNote invoiceNote, IPaymentRefund paymentRefund, IState state)
 {
     _fileBL          = fileBL;
     _adjusterBL      = adjusterBL;
     _employerBL      = employerBL;
     _insurerBL       = insurerBL;
     _insurerBranchBL = insurerBranchBL;
     _department      = department;
     _invoice         = invoice;
     _payment         = payment;
     _storageServices = storageServices;
     _arCommonService = arCommonService;
     _invoiceNote     = invoiceNote;
     _paymentRefund   = paymentRefund;
     _stateBL         = state;
 }
 // GET: CheckAssignment
 public CheckAssignmentController(IOCR ocr, IStorageServices storageServices, IARCommonServices arCommonService)
 {
     _storageServices = storageServices;
     _arCommonService = arCommonService;
     _ocr             = ocr;
 }
Esempio n. 5
0
 public PendingUploadController(IPendingUpload pendingUpload, IARCommonServices arCommonService)
 {
     _pendingUpload   = pendingUpload;
     _arCommonService = arCommonService;
 }