public EduPointController(IConfiguration configuration, IEduPointService eduPointService, IUserService userService, IEduPointMapper pointMapper)
 {
     this.eduPointService = eduPointService;
     this.userService     = userService;
     this.pointMapper     = pointMapper;
     this.pageSize        = int.Parse(configuration["AppData:TableViewIndexPageSize"]);
 }
 public EduPointMapper(IEduPointService pointService, IEduPointCategoryService pointCategoryService, IUserService userService)
 {
     this.pointService         = pointService;
     this.pointCategoryService = pointCategoryService;
     this.userService          = userService;
 }