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