コード例 #1
0
 public CustomerAccountService(
     MyContex myContex,
     AppService appService)
 {
     _appService = appService;
     _myContex   = myContex;
 }
コード例 #2
0
 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;
 }
コード例 #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;
 }
コード例 #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;
 }
コード例 #5
0
 public UserDbRepository(MyContex contex) : base(contex)
 {
     _context = contex;
 }
コード例 #6
0
 public RouteDbRepository(MyContex context) : base(context)
 {
     _context = context;
 }
コード例 #7
0
 public FavouritesDbRepository(MyContex context) : base(context)
 {
     _context = context;
 }
コード例 #8
0
 public CartService(MyContex myContex)
 {
     _myContex = myContex;
 }
コード例 #9
0
 public AdminService(IMapper mapper, MyContex myContex)
 {
     _mapper   = mapper;
     _myContex = myContex;
 }
コード例 #10
0
 public SubiektAPIService(MyContex myContex)
 {
     _myContex = myContex;
 }
コード例 #11
0
 public DpdService(MyContex myContex)
 {
     _myContex = myContex;
 }
コード例 #12
0
 public StationDbRepository(MyContex context) : base(context)
 {
     _context = context;
 }
コード例 #13
0
 public DbRepository(MyContex context)
 {
     _context = context;
 }