コード例 #1
0
 public ReportsController(AttendenceService attendenceService, ReportService reportService)
 {
     this.attendenceService = attendenceService;
     this.reportService     = reportService;
     this.context           = BeanContext.GetInstance();
     //this.objReportService.CurrentKey = CurrentRequestKey;
 }
コード例 #2
0
 public AttendenceController
 (
     IHttpContextAccessor httpContextAccessor,
     IAttendenceService attendenceService,
     ILectureService lectureService,
     IUserService userService
 ) : base(httpContextAccessor)
 {
     _attendenceService = attendenceService;
     _lectureService    = lectureService;
     _userService       = userService;
 }
コード例 #3
0
 public AttendenceController(IAttendenceService attendenceService, IMapper mapper)
 {
     _attendenceService = attendenceService;
     _mapper            = mapper;
 }
コード例 #4
0
 public HomeController(AttendenceService ObjAttendenceService, AccountService ObjAccountService, SellGoodService ObjSellGoodService)
 {
     this.ObjAttendenceService = ObjAttendenceService;
     this.ObjSellGoodService   = ObjSellGoodService;
     this.ObjAccountService    = ObjAccountService;
 }
コード例 #5
0
 public AttendenceApiController(ICustomerService CustomerService, IAttendenceService AttendenceService, INotificationService NotificationService)
 {
     this._CustomerService     = CustomerService;
     this._AttendenceService   = AttendenceService;
     this._NotificationService = NotificationService;
 }