예제 #1
0
 public SubdivisionController(ISubdivisionsService services, IDropDownList dropDownList, IOops oops, IMapper mapper)
 {
     _services     = services;
     _dropDownList = dropDownList;
     _oops         = oops;
     _mapper       = mapper;
 }
예제 #2
0
 public EducationController(IEducationService educationService, IDropDownList dropDownList, IOops oops, IMapper mapper)
 {
     _educationService = educationService;
     _dropDownList     = dropDownList;
     _oops             = oops;
     _mapper           = mapper;
 }
 public AccountController(IAccountService accountService, IDropDownList dropDownList, IOops oops, IMapper mapper)
 {
     _accountService = accountService;
     _dropDownList   = dropDownList;
     _oops           = oops;
     _mapper         = mapper;
 }
 public QualificationController(IQualificationService qualificationService, IDropDownList dropDownList, IOops oops, IMapper mapper)
 {
     _qualificationService = qualificationService;
     _dropDownList         = dropDownList;
     _oops   = oops;
     _mapper = mapper;
 }
예제 #5
0
 public EmployeeController(IEmployeeService employeeService, IDropDownList dropDownList, IOops oops, IMapper mapper)
 {
     _employeeService = employeeService;
     _dropDownList    = dropDownList;
     _oops            = oops;
     _mapper          = mapper;
 }
예제 #6
0
 public SelectDropDownItemAction(IDropDownList dropDownList, int itemIndex)
 {
     this.dropDownList = dropDownList;
     this.itemIndex    = itemIndex;
 }
예제 #7
0
 public ToggleAction(IDropDownList dropDownList)
 {
     this.dropDownList = dropDownList;
 }
 public SearchController(ISearchService searchService, IDropDownList dropDownList)
 {
     _searchService = searchService;
     _dropDownList  = dropDownList;
 }