Example #1
0
        public EmployeeAddForm(IEmployeeService employeeService, IEmployeeTitleService employeeTitleService, ISalaryTypeService salaryTypeService)
        {
            _employeeService      = employeeService;
            _employeeTitleService = employeeTitleService;
            _salaryTypeService    = salaryTypeService;

            InitializeComponent();
        }
Example #2
0
 public SalaryTypeController(ISalaryTypeService salaryTypeService, ISalaryElementService salaryElementService, IMasterDataService masterDataService, ITableColumnService tableColumnService, ITableConfigService tableConfigService, ILocalizationService localizationService, IOrganizationService organizationService)
 {
     _tableConfigService   = tableConfigService;
     _salaryTypeService    = salaryTypeService;
     _salaryElementService = salaryElementService;
     _masterDataService    = masterDataService;
     _tableColumnService   = tableColumnService;
     _localizationService  = localizationService;
     _organizationService  = organizationService;
     _languageId           = CurrentUser.LanguageId;
 }
 public SalaryTypeController(ISalaryTypeService salaryTypeService)
 {
     this.salaryTypeService = salaryTypeService;
 }