コード例 #1
0
 public BusinessRulesRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
 }
コード例 #2
0
        private IModulesRepository GetModulesRepository()
        {
            BusinessRulesDataEngineContext context = new BusinessRulesDataEngineContext();

            return(new ModulesRepository(context));
        }
コード例 #3
0
        private IPaymentOptionsRepository GetIPaymentOptionsRepository()
        {
            BusinessRulesDataEngineContext context = new BusinessRulesDataEngineContext();

            return(new PaymentOptionsRepository(context));
        }
コード例 #4
0
        private IMemberShipRepository GetMembershipRepository()
        {
            BusinessRulesDataEngineContext context = new BusinessRulesDataEngineContext();

            return(new MemberShipRepository(context));
        }
コード例 #5
0
 public PaymentOptionsRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
 }
コード例 #6
0
 public PaymentRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
     this.memberShipRepository = new MemberShipRepository(new BusinessRulesDataEngineContext());
 }
コード例 #7
0
 public MemberShipRepository(BusinessRulesDataEngineContext context)
 {
     this.context = context;
 }