public ASAttendeeRole(IPresenceRepository presenceRepository, IRSServiceRole userServices)
 {
     this.presenceRepository = presenceRepository ?? throw new ArgumentNullException(nameof(presenceRepository));
     this.userServices       = userServices;
 }
 //Constructor
 public ESAssistantRole(IESUnitOfWork iESUnitOfWork, IRSServiceRole iRSServiceRole)
 {
     this.iESUnitOfWork  = iESUnitOfWork ?? throw new ArgumentNullException(nameof(iESUnitOfWork));
     this.iRSServiceRole = iRSServiceRole ?? throw new ArgumentNullException(nameof(iRSServiceRole));
 }
Пример #3
0
 public ASAttendeeRole(ICheckInRepository checkInRepository, IRSServiceRole userServices)
 {
     this.checkInRepository = checkInRepository ?? throw new ArgumentNullException(nameof(checkInRepository));
     this.userServices      = userServices;
 }
Пример #4
0
 public ASAssistantRole(AttendanceContext contextIoC, IRSServiceRole registrationServiceIoC)
 {
     this.attendanceContextIoC   = contextIoC;
     this.registrationServiceIoC = registrationServiceIoC ?? throw new ArgumentNullException(nameof(registrationServiceIoC));
 }