示例#1
0
 public UserController(
     IPermissionProvider permissionManage,
     IAdminUser adminUserRepository,
     IUser memberUserRepository,
     IArea areaRepository,
     ICommon commonrepository,
     IExpertPermission expertService,
     IOperatorInfoVerifciationRepository operatorService,
     IFarmerVerficationInfoRepository farmerVerificationRepository//ww
     )
     : base(permissionManage, adminUserRepository)
 {
     _adminUserRepository          = adminUserRepository;
     _areaRepository               = areaRepository;
     _commonrepository             = commonrepository;
     _userService                  = memberUserRepository;
     _expertService                = expertService;
     _operatorService              = operatorService;
     _farmerVerificationRepository = farmerVerificationRepository;
 }
示例#2
0
 public VerificationController(IPermissionProvider permissionManage,
                               IRoleVerification roleVerificationRepository,
                               IAdminUser adminUserRepository,
                               IFarmerVerficationInfoRepository farmerVerificationRepository,
                               IOperatorInfoVerifciationRepository machineryOperatorVerificationRepository,
                               IBusinessVerificationRepository businessVerificationRepository,
                               IArea areaRepository,
                               IFileInfoRepository fileInfoRepository,
                               ISys_Dictionary sysDictionaryRespository,
                               ISuppliers_Sarea suppliers_SareaRespository, IUser user)
     : base(permissionManage, adminUserRepository)
 {
     this.suppliers_SareaRespository              = suppliers_SareaRespository;
     this.roleVerificationRepository              = roleVerificationRepository;
     this.adminUserRepository                     = adminUserRepository;
     this.farmerVerificationRepository            = farmerVerificationRepository;
     this.machineryOperatorVerificationRepository = machineryOperatorVerificationRepository;
     this.businessVerificationRepository          = businessVerificationRepository;
     this.areaRepository           = areaRepository;
     this.fileInfoRepository       = fileInfoRepository;
     this.sysDictionaryRespository = sysDictionaryRespository;
 }