public Context(VegaDBContext db)
 {
     this.db = db;
 }
Example #2
0
 public MakeDAL(VegaDBContext db)
 {
     this.db = db;
 }
Example #3
0
 public BaseRepository(VegaDBContext dBContext)
 {
     this.dBContext = dBContext;
 }
Example #4
0
 public ModelRepository(VegaDBContext dbContext) : base(dbContext)
 {
 }
Example #5
0
 public FeaturesController(VegaDBContext context, IMapper mapper)
 {
     this.context = context;
     this.mapper  = mapper;
 }
 public UnitOfWork(VegaDBContext context)
 {
     this.context = context;
 }
Example #7
0
 public PhotoDAL(VegaDBContext db)
 {
     this.db = db;
 }
 public VehicleDAL(VegaDBContext db)
 {
     this.db = db;
 }
Example #9
0
 public FeatureRepository(VegaDBContext dBContext) : base(dBContext)
 {
 }
Example #10
0
 public VehicleRepository(VegaDBContext vegaDBContext)
 {
     this.vegaDBContext = vegaDBContext;
 }
Example #11
0
 public VehicleRepository(VegaDBContext context)
 {
     this.context = context;
 }
Example #12
0
 public VehiclesController(IMapper mapper, VegaDBContext context)
 {
     this.context = context;
     _mapper      = mapper;
 }
Example #13
0
 public MakesController(VegaDBContext context, IMapper mapper)
 {
     this.context = context;
 }
 public MakeRepository(VegaDBContext dBContext) : base(dBContext)
 {
 }
 public FeatureDAL(VegaDBContext db)
 {
     this.db = db;
 }
Example #16
0
 public MakesController(VegaDBContext context, IMapper mapper)
 {
     this._context = context;
     this.mapper   = mapper;
 }