示例#1
0
 public ModifyUnitIndexService(IBasicInfoController basicInfoController
                               , IPMSController pmsController, IUnitIndexServiceWrapper unitIndexService)
 {
     this.basicInfoController = basicInfoController;
     this.pmsController       = pmsController;
     this.unitIndexService    = unitIndexService;
 }
示例#2
0
 public ManageUnitIndexCustomFieldsService(IBasicInfoController basicInfoController
                                           , IPMSController pmsController, IUnitIndexServiceWrapper unitIndexService)
 {
     this.basicInfoController = basicInfoController;
     this.pmsController       = pmsController;
     this.unitIndexService    = unitIndexService;
 }
示例#3
0
 public UnitIndexCategoryVM(IPMSController appController, IUnitIndexServiceWrapper unitIndexCategoryService)
 {
     this.appController            = appController;
     this.unitIndexCategoryService = unitIndexCategoryService;
     UnitIndexCategory             = new UnitIndexCategoryDTO();
     DisplayName = "دسته شاخص ";
 }
示例#4
0
 public UnitIndexConverter(IUnitIndexDataProvider unitIndexDataProvider,
                           IUnitIndexServiceWrapper unitIndexService, IUnitIndexInPeriodServiceWrapper unitIndexAssignmentService, IEventPublisher publisher)
 {
     this.unitIndexDataProvider      = unitIndexDataProvider;
     this.unitIndexService           = unitIndexService;
     this.unitIndexAssignmentService = unitIndexAssignmentService;
     this.publisher = publisher;
 }
示例#5
0
 public UnitIndexTreeVM(
     IPMSController appController,
     IBasicInfoAppLocalizedResources basicInfoAppLocalizedResources,
     IUnitIndexServiceWrapper unitIndexService)
 {
     this.appController             = appController;
     this.unitIndexService          = unitIndexService;
     BasicInfoAppLocalizedResources = basicInfoAppLocalizedResources;
     init();
 }
 public UnitIndexCustomFieldManageVM(IPMSController appController,
                                     IUnitIndexServiceWrapper unitIndexService,
                                     ICustomFieldServiceWrapper customFieldService,
                                     IBasicInfoAppLocalizedResources basicInfoAppLocalizedResources)
 {
     this.appController             = appController;
     this.unitIndexService          = unitIndexService;
     this.customFieldService        = customFieldService;
     BasicInfoAppLocalizedResources = basicInfoAppLocalizedResources;
     init();
 }
示例#7
0
 public UnitIndexInPeriodVM(IUnitIndexInPeriodServiceWrapper unitIndexInPeriodService,
                            IPMSController appController,
                            IPeriodMgtAppLocalizedResources periodMgtAppLocalizedResources,
                            IUnitIndexServiceWrapper unitIndexService,
                            IUnitInPeriodServiceWrapper unitInPeriodService)
 {
     this.unitIndexInPeriodService  = unitIndexInPeriodService;
     this.appController             = appController;
     this.unitIndexService          = unitIndexService;
     PeriodMgtAppLocalizedResources = periodMgtAppLocalizedResources;
     init();
 }
示例#8
0
 public UnitIndexVM(IUnitIndexServiceWrapper unitIndexService,
                    ICustomFieldServiceWrapper customFieldService,
                    IPMSController appController,
                    IBasicInfoAppLocalizedResources basicInfoAppLocalizedResources)
 {
     this.unitIndexService          = unitIndexService;
     this.customFieldService        = customFieldService;
     this.appController             = appController;
     BasicInfoAppLocalizedResources = basicInfoAppLocalizedResources;
     UnitIndex   = new UnitIndexDTO();
     DisplayName = BasicInfoAppLocalizedResources.UnitIndexViewTitle;
 }
示例#9
0
 public UnitIndexConverter(IUnitIndexDataProvider UnitIndexDataProvider, IUnitIndexServiceWrapper UnitIndexService, IUnitIndexInPeriodServiceWrapper UnitIndexInPeriodService)
 {
     this.unitIndexService         = UnitIndexService;
     this.unitIndexDataProvider    = UnitIndexDataProvider;
     this.unitIndexInPeriodService = UnitIndexInPeriodService;
 }
示例#10
0
 public DeleteUnitIndexService(IPMSController pmsController, IUnitIndexServiceWrapper unitIndexService)
 {
     this.pmsController    = pmsController;
     this.unitIndexService = unitIndexService;
 }