예제 #1
0
        public PayController(Contextdb _db)
        {
            var expose = new Expose();

            _payment      = expose.CreatePayment();
            _authority    = expose.CreateAuthority();
            _transactions = expose.CreateTransactions();
            db            = _db;
        }
예제 #2
0
        public BaseController(Contextdb _db, IWebHostEnvironment env)
        {
            var expose = new Expose();

            _payment      = expose.CreatePayment();
            _authority    = expose.CreateAuthority();
            _transactions = expose.CreateTransactions();
            db            = _db;
            _env          = env;
        }
예제 #3
0
 public LoginController(Contextdb _db, IWebHostEnvironment env) : base(_db, env)
 {
 }
예제 #4
0
 public mapclientController(Contextdb db)
 {
     _db = db;
 }
예제 #5
0
 public mapclientController(Contextdb _db, IWebHostEnvironment env) : base(_db, env)
 {
 }
예제 #6
0
 public AboutUsController(Contextdb db)
 {
     _db = db;
 }
예제 #7
0
 public HomeController(Contextdb db)
 {
     _db = db;
 }
 public UsuarioController(Contextdb db, IMapper mapper, ILogger <UsuarioController> logger)
 {
     _db     = db;
     _mapper = mapper;
     _logger = logger;
 }
 public TravelDriverController(Contextdb _db, IWebHostEnvironment env) : base(_db, env)
 {
 }
예제 #10
0
 public ProfileController(Contextdb db, IHostingEnvironment env)
 {
     _db  = db;
     _env = env;
 }
예제 #11
0
 public ProfileController(Contextdb _db, IWebHostEnvironment env) : base(_db, env)
 {
 }
예제 #12
0
 public UnitofWork(Contextdb context)
 {
     _Context = context;
     Product  = new ProductRepository(_Context);
 }
예제 #13
0
 public mapAcceptController(Contextdb db)
 {
     _db = db;
 }
예제 #14
0
 public TravelClientController(Contextdb db)
 {
     _db = db;
 }