コード例 #1
0
 public CarsController(CarParadiseContext context, IMapper mapper)
 {
     this.Context = context;
     this.Mapper  = mapper;
 }
コード例 #2
0
 protected HomeController(CarParadiseContext context, IMapper mapper)
 {
     this.Mapper  = mapper;
     this.Context = context;
 }
コード例 #3
0
 protected CarsController(UserManager <User> userManager, CarParadiseContext context, IMapper mapper) : base(userManager)
 {
     this.Mapper  = mapper;
     this.Context = context;
 }