public ServiceProviderRepository(ICacheProvider cacheProvider, PGDataContext ctx)
 {
     _cacheProvider = cacheProvider;
     _ctx = ctx;
 }
 public RequestResponseRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }
 public ClientMemberRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }
Example #4
0
 public AuditLogRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }
 public PaymentResponseRepository(PGDataContext ctx, IAuditLogRepository auditLogRepository)
 {
     _ctx = ctx;
     _auditLogRepository = auditLogRepository;
 }
Example #6
0
 public ReportService(PGDataContext ctx)
 {
     _ctx = ctx;
 }
 public SmscNotificationRepository(PGDataContext ctx)
 {
     _ctx = ctx;
 }