示例#1
0
 public LoginController(LoginApiService loginApiService, IAutoMapperBase autoMapperBase, UserApiService userApiService)
 {
     ApiUrl           = ConfigHelper.GetConfigPar <string>("ApiUrl");
     _loginApiService = loginApiService;
     _autoMapperBase  = autoMapperBase;
     _userApiService  = userApiService;
 }
示例#2
0
 public UserController(IUserService userService, IAutoMapperBase autoMapperBase)
 {
     _userService    = userService;
     _autoMapperBase = autoMapperBase;
 }
示例#3
0
 public ArticleController(IArticleService articleService, IAutoMapperBase autoMapperBase)
 {
     _articleService = articleService;
     _autoMapperBase = autoMapperBase;
 }
示例#4
0
 public DepartmentController(IDepartmentService departmentService, IAutoMapperBase autoMapperBase)
 {
     _autoMapperBase    = autoMapperBase;
     _departmentService = departmentService;
 }
示例#5
0
 public StudentController(IStudentService studentService, IAutoMapperBase autoMapperBase)
 {
     _studentService = studentService;
     _autoMapperBase = autoMapperBase;
 }
示例#6
0
 public CourseController(ICourseService courseService, IAutoMapperBase autoMapperBase)
 {
     _courseService  = courseService;
     _autoMapperBase = autoMapperBase;
 }
示例#7
0
 public InstructorController(IInstructorService ınstructorService, IAutoMapperBase autoMapperBase)
 {
     _ınstructorService = ınstructorService;
     _autoMapperBase    = autoMapperBase;
 }
示例#8
0
 public AttendanceController(IAttendanceService attendanceService, IAutoMapperBase autoMapperBase)
 {
     _autoMapperBase    = autoMapperBase;
     _attendanceService = attendanceService;
 }