Beispiel #1
0
 public MemberController(IRSMonkeyContext context, IMemberDal dal)
 {
     _dal = dal;
 }
Beispiel #2
0
 public ResolutionDal(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public ProductItemDal(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #4
0
 public GeoLocationDal(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public MemberLoginDal(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public PaymentGateway(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #7
0
 public OrderDal(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public FormSubmittedDal(IRSMonkeyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #9
0
 public FormDal(IRSMonkeyContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public UploadFileDb(IRSMonkeyContext context)
 {
     _context = context;
 }