コード例 #1
0
        //Constructor
        public ESAssistantRole(IESUnitOfWork iESUnitOfWork, IRSAssistantRole iRSAssistantRole)

        {
            this.iESUnitOfWork    = iESUnitOfWork ?? throw new ArgumentNullException(nameof(iESUnitOfWork));
            this.iRSAssistantRole = iRSAssistantRole ?? throw new ArgumentNullException(nameof(iRSAssistantRole));
        }
コード例 #2
0
 public ASAttendeeRole(ICheckInRepository checkInRepository, IRSAssistantRole userServices)
 {
     this.checkInRepository = checkInRepository ?? throw new ArgumentNullException(nameof(checkInRepository));
     this.userServices      = userServices;
 }