public CustomerAccountService(
     MyContex myContex,
     AppService appService)
 {
     _appService = appService;
     _myContex   = myContex;
 }
 public HomeController(
     RoleManager <IdentityRole> roleManager,
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     MyContex myContex,
     AppService appService)
 {
     _roleManager   = roleManager;
     _userManager   = userManager;
     _signInManager = signInManager;
     _myContex      = myContex;
     _appService    = appService;
 }
Exemple #3
0
 public CartController(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     MyContex myContex,
     AppService appService,
     CartService cartService)
 {
     _userManager   = userManager;
     _signInManager = signInManager;
     _myContex      = myContex;
     _appService    = appService;
     _cartService   = cartService;
 }
Exemple #4
0
 public CustomerAccountController(
     UserManager <IdentityUser> userManager,
     SignInManager <IdentityUser> signInManager,
     MyContex myContex,
     AppService appService,
     CartService cartService,
     CustomerAccountService customerAccountService,
     DpdService dpdService)
 {
     _userManager            = userManager;
     _signInManager          = signInManager;
     _myContex               = myContex;
     _appService             = appService;
     _cartService            = cartService;
     _customerAccountService = customerAccountService;
     _dpdService             = dpdService;
 }
 public UserDbRepository(MyContex contex) : base(contex)
 {
     _context = contex;
 }
Exemple #6
0
 public RouteDbRepository(MyContex context) : base(context)
 {
     _context = context;
 }
 public FavouritesDbRepository(MyContex context) : base(context)
 {
     _context = context;
 }
 public CartService(MyContex myContex)
 {
     _myContex = myContex;
 }
 public AdminService(IMapper mapper, MyContex myContex)
 {
     _mapper   = mapper;
     _myContex = myContex;
 }
 public SubiektAPIService(MyContex myContex)
 {
     _myContex = myContex;
 }
 public DpdService(MyContex myContex)
 {
     _myContex = myContex;
 }
Exemple #12
0
 public StationDbRepository(MyContex context) : base(context)
 {
     _context = context;
 }
Exemple #13
0
 public DbRepository(MyContex context)
 {
     _context = context;
 }