コード例 #1
0
 public ServiceProviderRepository(ICacheProvider cacheProvider, PGDataContext ctx)
 {
     _cacheProvider = cacheProvider;
     _ctx = ctx;
 }
コード例 #2
0
 public RequestResponseRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }
コード例 #3
0
 public ClientMemberRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }
コード例 #4
0
 public AuditLogRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }
コード例 #5
0
 public PaymentResponseRepository(PGDataContext ctx, IAuditLogRepository auditLogRepository)
 {
     _ctx = ctx;
     _auditLogRepository = auditLogRepository;
 }
コード例 #6
0
ファイル: ReportService.cs プロジェクト: asanyaga/BuildTest
 public ReportService(PGDataContext ctx)
 {
     _ctx = ctx;
 }
コード例 #7
0
 public SmscNotificationRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }