Exemplo n.º 1
0
 public ManufactureLicenseController(IPageBLL pageBLL, IChangesHistoryBLL changeHistoryBLL, IWorkflowHistoryBLL workflowHistoryBLL) : base(pageBLL, Enums.MenuList.ManufactureLicense)
 {
     this.mainMenu = Enums.MenuList.ManufactureLicense;
     //this.service = new InterviewRequestModel();
     this.refService = new SystemReferenceService();
     this.chBLL      = changeHistoryBLL;
     this.whBLL      = workflowHistoryBLL;
 }
 public FinanceRatioController(IPageBLL pageBLL, IChangesHistoryBLL changeHistoryBLL, IWorkflowHistoryBLL workflowHistory)
     : base(pageBLL, Enums.MenuList.FinanceRatio)
 {
     this.mainMenu           = Enums.MenuList.MasterData;
     this.service            = new FinanceRatioManagementService();
     this.refService         = new SystemReferenceService();
     this.changeHistoryBLL   = changeHistoryBLL;
     this.workflowHistoryBLL = workflowHistory;
 }
Exemplo n.º 3
0
 public TariffController(IPageBLL pageBLL, IChangesHistoryBLL changeHistoryBll, IWorkflowHistoryBLL workflowBll)
     : base(pageBLL, Enums.MenuList.Tariff)
 {
     this.mainMenu         = Enums.MenuList.MasterData;
     this.service          = new TariffManagementService();
     this.refService       = new SystemReferenceService();
     this.changeHistoryBll = changeHistoryBll;
     this.workflowBll      = workflowBll;
 }
 public SupportDocController(IPageBLL pageBLL, IChangesHistoryBLL changesHistoryBll, IWorkflowHistoryBLL workflowHistoryBLL)
     : base(pageBLL, Enums.MenuList.SupportDoc)
 {
     this.mainMenu           = Enums.MenuList.MasterData;
     this.service            = new SupportDocManagementService();
     this.refService         = new SystemReferenceService();
     this._changesHistoryBll = changesHistoryBll;
     this.workflowHistoryBLL = workflowHistoryBLL;
 }
 public ProductTypeController(IZaidmExProdTypeBLL exProdTypeBll, IChangesHistoryBLL changesHistoryBll, IWorkflowHistoryBLL workflowHistoryBLL, IPageBLL pageBLL)
     : base(pageBLL, Enums.MenuList.ProductType)
 {
     _exProdTypeBll                 = exProdTypeBll;
     this._mainMenu                 = Enums.MenuList.MasterData;
     this._productTypeService       = new ProductTypeService();
     this._refService               = new SystemReferenceService();
     this._changesHistoryBll        = changesHistoryBll;
     this.workflowHistoryBLL        = workflowHistoryBLL;
     this.productDevelopmentService = new ProductDevelopmentService();
 }
Exemplo n.º 6
0
        //private IPageBLL _pageBll;
        public MasterApprovalController(IPageBLL pageBll, IWorkflowHistoryBLL workflowHistoryBLL, IMasterDataAprovalBLL masterDataAprovalBLL, IPOABLL poaBLL, IBrandRegistrationBLL brandRegistrationBLL, IUserBLL userBLL) : base(pageBll, Enums.MenuList.MasterDataApproval)
        {
            _mainMenu             = Enums.MenuList.MasterData;
            _masterDataAprovalBLL = masterDataAprovalBLL;

            _xmlWriter = new XmlBrandRegistrationWriter();
            _userBLL   = userBLL;
            _poaBLL    = poaBLL;
            //_pageBll = pageBll;
            _workflowHistoryBLL   = workflowHistoryBLL;
            _brandRegistrationBLL = brandRegistrationBLL;
        }
Exemplo n.º 7
0
        public WorkflowBLL(IUnitOfWork uow, ILogger logger)
        {
            _logger = logger;
            _uow    = uow;

            _userBll               = new UserBLL(_uow, _logger);
            _poabll                = new POABLL(_uow, _logger);
            _poaMapBll             = new ZaidmExPOAMapBLL(_uow, _logger);
            _workflowHistoryBll    = new WorkflowHistoryBLL(_uow, _logger);
            _wasteRoleServices     = new WasteRoleServices(_uow, _logger);
            _poaDelegationServices = new PoaDelegationServices(_uow, _logger);
            _userPlantMapService   = new UserPlantMapService(_uow, _logger);
        }