public FeatureController(VegaDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper = mapper;
 }
 public MakeRepository(VegaDbContext vegaDbContext)
 {
     this.vegaDbContext = vegaDbContext;
     makes = vegaDbContext.Makes;
 }
 public FeaturesController(VegaDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public TransfersController(VegaDbContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemple #5
0
 public MakesController(VegaDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #6
0
 public VehicleRepository(VegaDbContext context)
 {
     this.context = context;
 }
Exemple #7
0
 public VehicleController(IMapper mapper, IVehicleRepository repository, IUnitOfWork unitOfWork, VegaDbContext context)
 {
     this.context    = context;
     this.unitOfWork = unitOfWork;
     this.repository = repository;
     this.mapper     = mapper;
 }
Exemple #8
0
 public FeaturesController(VegaDbContext context)
 {
     this.context = context;
 }
Exemple #9
0
 public GradeController(VegaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
 public SetupDefaultTestData(VegaDbContext db)
 {
     this.db = db;
 }
Exemple #11
0
 public Repository(VegaDbContext context)
 {
     _context  = context;
     _entities = context.Set <TEntity>();
 }
Exemple #12
0
 public SearchController(VegaDbContext context)
 {
     this.context = context;
 }
Exemple #13
0
 public AuthRepository(VegaDbContext context)
 {
     this.context = context;
 }
Exemple #14
0
 public MaterialController(VegaDbContext context, IMapper mapper) : base(context, mapper)
 {
 }
Exemple #15
0
 public UnitOfWork(VegaDbContext context)
 {
     this.context = context;
 }
 public FeatureRepository(VegaDbContext context)
     : base(context)
 {
 }
 public VehiclesController(IMapper mapper, VegaDbContext context)
 {
     this.context = context;
     this.mapper  = mapper;
 }
Exemple #18
0
 public CategoriesController(VegaDbContext context)
 {
     this._context = context;
 }
Exemple #19
0
 public MakesController(VegaDbContext context, IMapper mapper)
 {
     this.mapper  = mapper;
     this.context = context;
 }
Exemple #20
0
 public FeaturesController(VegaDbContext db, IMapper mapper)
 {
     this.mapper = mapper;
     this.db     = db;
 }