예제 #1
0
 public AttendanceController(IMapper mapper, IAttendanceService attendanceService, IUserService userService,
                             IMeetService meetService)
 {
     this._mapper            = mapper;
     this._attendanceService = attendanceService;
     this._userService       = userService;
     this._meetService       = meetService;
 }
예제 #2
0
 public MeetsController(IMeetService meetService, IOptions <PagingOptions> defaultPagingOptions)
 {
     _meetService          = meetService;
     _defaultPagingOptions = defaultPagingOptions.Value;
 }
예제 #3
0
 public MeetController(IMeetService meetService, IMapper mapper)
 {
     this._meetService = meetService;
     this._mapper = mapper;
     
 }
예제 #4
0
 public MeetController(IMeetService meetService)
 {
     _meetService = meetService;
 }