public AttendanceSelectForm(IAttendanceManager attMgr, IGroupManager grMgr)
        {
            InitializeComponent();

            this.attMgr = attMgr;
            this.grMgr  = grMgr;
        }
 public ValidateUserController(IValidateUserManager validateUserManager, ILogger logger,
                               IHttpContextAccessor context, IOptions <AppSettings> appSettings, IAttendanceManager attendanceManager)
 {
     _validateUserManager = validateUserManager;
     _appSettings         = appSettings.Value;
     _logger            = logger;
     _context           = context;
     _attendanceManager = attendanceManager;
 }
Example #3
0
        public AttendancePresenter(IAttendanceManager attendanceManager, IGroupManager groupManager, IAttendanceView view)
        {
            this.attendanceManager = attendanceManager;
            this.groupManager      = groupManager;
            this.view = view;

            view.VisitationChecked += new EventHandler(view_VisitationChecked);
            view.FormLoaded        += new EventHandler(view_FormLoaded);
            view.ClientChanged     += View_ClientChanged;
            view.VisitationDeleted += View_VisitationDeleted;
        }
 public AttendanceSheetsController(
     ILogger <AttendanceSheetsController> logger,
     IMapper mapper,
     IUnitOfWork uow,
     IAttendanceManager attendanceManager
     )
 {
     _logger            = logger;
     _mapper            = mapper;
     _uow               = uow;
     _attendanceManager = attendanceManager;
 }
 public AttendancesController(IAttendanceManager attendanceManager, IEmployeeManager employeeManager, ILogger <AttendancesController> logger)
 {
     this.AttendanceManager = attendanceManager;
     this.EmployeeManager   = employeeManager;
     this.Logger            = logger;
 }
Example #6
0
 public EventsController(IEventManager eventManager, IAttendanceManager attendanceManager)
 {
     _eventmanager      = eventManager;
     _attendanceManager = attendanceManager;
 }
Example #7
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="attendanceManager"></param>
 public AttendanceController(IAttendanceManager attendanceManager)
 {
     _attendanceManager = attendanceManager;
 }
Example #8
0
 public LevelController(IAttendanceManager attmgr)
 {
     _attmgr = attmgr;
 }
 public AttendanceController(IAttendanceManager manager, IHttpContextAccessor context)
 {
     _manager = manager;
     _context = context;
 }
Example #10
0
 public ReportController(IReportManager rptmgr, IAttendanceManager attmgr)
 {
     _rptmgr = rptmgr;
     _attmgr = attmgr;
 }
Example #11
0
 public CollegeController(IAttendanceManager attmgr)
 {
     _attmgr = attmgr;
 }
Example #12
0
 public LecturerController(IAttendanceManager attmgr)
 {
     _attmgr = attmgr;
 }
Example #13
0
 public ProgramController(IAttendanceManager attmgr)
 {
     _attmgr = attmgr;
 }