コード例 #1
0
        public PmsQueryRunner(
            IPmsDatabaseSession databaseSession, PmsXmlSerializer xmlSerializer, ILogger <PmsQueryRunner> logger)
        {
            if (databaseSession == null)
            {
                throw new ArgumentNullException(nameof(databaseSession));
            }
            if (xmlSerializer == null)
            {
                throw new ArgumentNullException(nameof(xmlSerializer));
            }
            if (logger == null)
            {
                throw new ArgumentNullException(nameof(logger));
            }

            _databaseSession = databaseSession;
            _xmlSerializer   = xmlSerializer;
            _logger          = logger;
        }
コード例 #2
0
 public CommercialGuestRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #3
0
 public AddressRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #4
0
 public IndividualGuestRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #5
0
ファイル: RoomRepository.cs プロジェクト: Sephyre1988/PmsV2
 public RoomRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #6
0
 public CollaboratorRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #7
0
ファイル: DomainRepository.cs プロジェクト: Sephyre1988/PmsV2
 public DomainRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #8
0
 public PassportRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }
コード例 #9
0
ファイル: PmsUnitOfWork.cs プロジェクト: Sephyre1988/PmsV2
 public PmsUnitOfWork(IPmsDatabaseSession session, IPmsWorkArea pmsUser) : base(session)
 {
     PmsUser = pmsUser;
 }
コード例 #10
0
 public MaintenanceJobRepository(IPmsDatabaseSession databaseSession) : base(databaseSession)
 {
 }