Ejemplo n.º 1
0
 public SalesController(FSXAPIDBContext context)
 {
     _service = new SalesService(context);
 }
 public FleetsController(FSXAPIDBContext context)
 {
     _service = new FleetService(context);
 }
 public FleetService(FSXAPIDBContext dbcontext)
 {
     _context = dbcontext;
     dbcontext.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
 }
 public StandardEntriesController(FSXAPIDBContext context)
 {
     _service = new StandardEntriesService(context);
 }
 public PartsController(FSXAPIDBContext context)
 {
     _service = new PartsService(context);
 }
 public StandardEntriesService(FSXAPIDBContext dbcontext)
 {
     _context = dbcontext;
     dbcontext.ChangeTracker.QueryTrackingBehavior = QueryTrackingBehavior.NoTracking;
 }