public PayController(Contextdb _db) { var expose = new Expose(); _payment = expose.CreatePayment(); _authority = expose.CreateAuthority(); _transactions = expose.CreateTransactions(); db = _db; }
public BaseController(Contextdb _db, IWebHostEnvironment env) { var expose = new Expose(); _payment = expose.CreatePayment(); _authority = expose.CreateAuthority(); _transactions = expose.CreateTransactions(); db = _db; _env = env; }
public LoginController(Contextdb _db, IWebHostEnvironment env) : base(_db, env) { }
public mapclientController(Contextdb db) { _db = db; }
public mapclientController(Contextdb _db, IWebHostEnvironment env) : base(_db, env) { }
public AboutUsController(Contextdb db) { _db = db; }
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) { }
public ProfileController(Contextdb db, IHostingEnvironment env) { _db = db; _env = env; }
public ProfileController(Contextdb _db, IWebHostEnvironment env) : base(_db, env) { }
public UnitofWork(Contextdb context) { _Context = context; Product = new ProductRepository(_Context); }
public mapAcceptController(Contextdb db) { _db = db; }
public TravelClientController(Contextdb db) { _db = db; }