public InternalAppsController(ILogService loggerService, IUserService userService,
                                      IUnitOfWork unitOfWork, ISouploadService docService, IWkflowdefService wkflowdefService,
                                      IOrgService orgService, IWkflowinstanceService wkflowinstanceService,
                                      IPortService portService, IPortsettingService portsettingService,
                                      IOrgdoctypService orgdoctypService, IMessageService messageService,
                                      IMessageuserService messageuserService, IOrgdoctypmonthService orgdoctypmonthService,
                                      IMonthService monthService, IOrgdoctypdailyuploadService orgdoctypdailyuploadService,
                                      IOrgmonthcommitmentService orgmonthcommitmentService)
        {
            this._LoggerService = loggerService;
            this._IUserService  = userService;
            this._IDocService   = docService;

            this._UnitOfWork = unitOfWork;

            this._IWkflowdefService            = wkflowdefService;
            this._IOrgService                  = orgService;
            this._IWkflowinstanceService       = wkflowinstanceService;
            this._IPortService                 = portService;
            this._IPortsettingService          = portsettingService;
            this._IOrgdoctypService            = orgdoctypService;
            this._IMessageService              = messageService;
            this._IMessageuserService          = messageuserService;
            this._IOrgdoctypmonthService       = orgdoctypmonthService;
            this._IMonthService                = monthService;
            this._IOrgdoctypdailyuploadService = orgdoctypdailyuploadService;
            this._IOrgmonthcommitmentService   = orgmonthcommitmentService;
        }
Example #2
0
 public DocTypeController(ILogService loggerService, IUserService userService, IUnitOfWork unitOfWork,
                          IOrgdoctypService orgdoctypService, IDataelmtypService dataelmtypService, IDoctypstatusService doctypstatusService,
                          IWkflowdefService wkflowdefService, IWkflowinstanceService wkflowinstanceService, IMessagetemplateService messagetemplateService,
                          IMessageuserService messageuserService)
 {
     this._LoggerService           = loggerService;
     this._IUserService            = userService;
     this._IOrgdoctypService       = orgdoctypService;
     this._UnitOfWork              = unitOfWork;
     this._IDoctypstatusService    = doctypstatusService;
     this._IWkflowdefService       = wkflowdefService;
     this._IWkflowinstanceService  = wkflowinstanceService;
     this._IDataelmtypService      = dataelmtypService;
     this._IMessagetemplateService = messagetemplateService;
     this._IMessageuserService     = messageuserService;
 }
Example #3
0
 public UserController(ILogService loggerService, IUserService userService, IContacttypService contacttypService,
                       IAuthrolService authrolService, IOrgService orgService, IMessagetemplateService messagetemplateService,
                       IMessageuserService messageuserService, IWkflowdefService wkflowdefService, IWkflowinstanceService wkflowinstanceService,
                       IOrgtyporgstatusService orgtyporgstatusService, IOrguserService _IOrguserService, IUnitOfWork unitOfWork)
 {
     this._LoggerService           = loggerService;
     this._IUserService            = userService;
     this._IContacttypService      = contacttypService;
     this._IAuthrolService         = authrolService;
     this._IOrgService             = orgService;
     this._IMessagetemplateService = messagetemplateService;
     this._IMessageuserService     = messageuserService;
     this._IWkflowdefService       = wkflowdefService;
     this._IWkflowinstanceService  = wkflowinstanceService;
     this._IOrgtyporgstatusService = orgtyporgstatusService;
 }