Exemplo n.º 1
0
 public frmFuelTypes()
 {
     rentACarEntities = new RentACarEntities();
     fuelTypes        = rentACarEntities.FuelTypes.Where(ct => ct.Status).ToList();
     InitializeComponent();
 }
Exemplo n.º 2
0
 public frmCars()
 {
     rentACarEntities = new RentACarEntities();
     cars             = rentACarEntities.Cars.Where(m => m.Status).ToList();
     InitializeComponent();
 }
Exemplo n.º 3
0
 public frmInspection()
 {
     rentACarEntities = new RentACarEntities();
     inspections      = rentACarEntities.Inspections.Where(ct => ct.Status).ToList();
     InitializeComponent();
 }
Exemplo n.º 4
0
 public frmEmployees()
 {
     rentACarEntities = new RentACarEntities();
     employees        = rentACarEntities.Employees.Where(e => e.Status).ToList();
     InitializeComponent();
 }
Exemplo n.º 5
0
 public frmEditMake()
 {
     rentACarEntities = new RentACarEntities();
     InitializeComponent();
 }
Exemplo n.º 6
0
 public frmModels()
 {
     rentACarEntities = new RentACarEntities();
     models           = rentACarEntities.Models.Where(m => m.Status).ToList();
     InitializeComponent();
 }
Exemplo n.º 7
0
 public frmAddFuelType()
 {
     rentACarEntities = new RentACarEntities();
     InitializeComponent();
 }
Exemplo n.º 8
0
 public frmRents()
 {
     rentACarEntities = new RentACarEntities();
     rents            = rentACarEntities.Rents.Where(r => r.Status).ToList();
     InitializeComponent();
 }