public NewFileController(IFileMainAppService _fileMainService, ISysSetAppService _sysSet,
                          IFileDetailAppService _fileDetailService, IActionListAppService _actionListService)
 {
     this._fileMainService   = _fileMainService;
     this._fileDetailService = _fileDetailService;
     this._actionListService = _actionListService;
     this._sysSet            = _sysSet;
 }
 public FileProcessActionController(IStaffAppService _newStaffService, IFileMainAppService _fileMainService, IFileTransMainAppService _fileTransMainService, IFileTransDetailAppService _fileTransDetailService, IFileDetailAppService _fileDetailService, IActionListAppService _actionListService)
 {
     this._newStaffService        = _newStaffService;
     this._fileMainService        = _fileMainService;
     this._fileDetailService      = _fileDetailService;
     this._fileTransMainService   = _fileTransMainService;
     this._fileTransDetailService = _fileTransDetailService;
     this._actionListService      = _actionListService;
 }
 public HomeController(IFileMainAppService _fileMainService, IFileDetailAppService _fileDetailService,
                       IStaffAppService _newStaffService, IActionListAppService _actionListService, IBoundaryAppService _boundaryService, IFileTransMainAppService _fileTransMainService,
                       IFileProcessInfosAppService _fileProcessInfoService, IAFileDetailAppService _afileDetailService, IAFileMainAppService _afileMainService)
 {
     this._fileMainService        = _fileMainService;
     this._fileDetailService      = _fileDetailService;
     this._afileMainService       = _afileMainService;
     this._afileDetailService     = _afileDetailService;
     this._newStaffService        = _newStaffService;
     this._actionListService      = _actionListService;
     this._boundaryService        = _boundaryService;
     this._fileTransMainService   = _fileTransMainService;
     this._fileProcessInfoService = _fileProcessInfoService;
 }