예제 #1
0
 public MemberController(IRSMonkeyContext context, IMemberDal dal)
 {
     _dal = dal;
 }
예제 #2
0
 public ResolutionDal(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #3
0
 public ProductItemDal(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #4
0
 public GeoLocationDal(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #5
0
 public MemberLoginDal(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #6
0
 public PaymentGateway(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #7
0
파일: OrderDal.cs 프로젝트: irsmonkey/api
 public OrderDal(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #8
0
 public FormSubmittedDal(IRSMonkeyContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #9
0
파일: FormDal.cs 프로젝트: irsmonkey/api
 public FormDal(IRSMonkeyContext context)
 {
     _context = context;
 }
예제 #10
0
 public UploadFileDb(IRSMonkeyContext context)
 {
     _context = context;
 }