Ejemplo n.º 1
0
 public AdminService(IUnitOfWork unitOfWork, IAllotFlowService allotFlowService, IProjectAllotFlowSurveyService projectAllotFlowSurveyService,
                     IHouseService houseService, ISysRoleMenuFunctionService functionService, IPhotoService photoService,
                     IProjectService projectService, IBuildingService buildingService, ICityService cityService)
 {
     this._allotFlowService = allotFlowService;
     this._unitOfWork       = unitOfWork;
     this._houseService     = houseService;
     this._functionService  = functionService;
     this._projectAllotFlowSurveyService = projectAllotFlowSurveyService;
     this._photoService    = photoService;
     this._projectService  = projectService;
     this._buildingService = buildingService;
     this._cityService     = cityService;
 }
Ejemplo n.º 2
0
 public AuthorizeFilterAttribute()
 {
     this._functionService = new StandardKernel(new SysRoleMenuFunctionBinder()).Get <ISysRoleMenuFunctionService>();
 }