예제 #1
0
 public LiftCardsController(ILiftCardService liftCardService, UserManager <User> userManager, IResortService resortService)
 {
     this.liftCardService = liftCardService;
     this.userManager     = userManager;
     this.resortService   = resortService;
 }
예제 #2
0
 public ResortService(SkiResortsDbContext db, IUserService userService, ILiftCardService liftCardService)
 {
     this.db              = db;
     this.userService     = userService;
     this.liftCardService = liftCardService;
 }
예제 #3
0
 public UsersController(UserManager <User> userManager, ILiftCardService liftCardService)
 {
     this.userManager     = userManager;
     this.liftCardService = liftCardService;
 }