コード例 #1
0
 public AddEditMovieHandler(IMapper mapper, MovieLibContext movieLibContext,
                            IWebHostEnvironment webHostEnvironment, IConfiguration configuration)
 {
     _mapper             = mapper;
     _movieLibContext    = movieLibContext;
     _webHostEnvironment = webHostEnvironment;
     _configuration      = configuration;
 }
コード例 #2
0
 public GetMoviesListHandler(MovieLibContext movieLibContext, IMapper mapper)
 {
     _movieLibContext = movieLibContext;
     _mapper          = mapper;
 }
コード例 #3
0
ファイル: UserLoginHandler.cs プロジェクト: virall90/MovieLib
 public UserLoginHandler(UserManager <User> userManager, MovieLibContext movieLibContext)
 {
     _userManager     = userManager;
     _movieLibContext = movieLibContext;
 }
コード例 #4
0
 public UserGetInfoHandler(IMapper mapper, MovieLibContext movieLibContext)
 {
     _mapper          = mapper;
     _movieLibContext = movieLibContext;
 }
コード例 #5
0
 public UserRegisterHandler(UserManager <User> userManager, IMapper mapper, MovieLibContext movieLibContext)
 {
     _userManager     = userManager;
     _mapper          = mapper;
     _movieLibContext = movieLibContext;
 }
コード例 #6
0
 public UserLogoutHandler(MovieLibContext movieLibContext)
 {
     _movieLibContext = movieLibContext;
 }