Example #1
0
 public static void editServiceEvent(ServiceEvent serviceEvent)
 {
     BasicVehicle.editServiceEvent(serviceEvent);
 }
Example #2
0
        public static VehicleServiceEvent getVehicleAndServiceEvents(int?id)
        {
            VehicleServiceEvent vehicleServiceEvent = BasicVehicle.getVehicleAndServiceEvents(id);

            return(vehicleServiceEvent);
        }
Example #3
0
 public static void deleteServiceEvent(ServiceEvent serviceEvent)
 {
     BasicVehicle.deleteServiceEvent(serviceEvent);
 }
Example #4
0
 public static ServiceEvent getServiceEvent(int?id)
 {
     return(BasicVehicle.getServiceEvent(id));
 }
Example #5
0
 public static List <ServiceEvent> getServiceEvents()
 {
     return(BasicVehicle.getServiceEvents());
 }
Example #6
0
 public static void createServiceEvent(ServiceEvent serviceEvent)
 {
     BasicVehicle.createServiceEvent(serviceEvent);
 }
Example #7
0
 public static void editVehicle(Vehicle vehicle)
 {
     BasicVehicle.editVehicle(vehicle);
 }
Example #8
0
 public static Vehicle getVehicle(int?id)
 {
     return(BasicVehicle.getVehicle(id));
 }
Example #9
0
 public static void deleteVehicle(Vehicle vehicle)
 {
     BasicVehicle.deleteVehicle(vehicle);
 }
Example #10
0
 public static void createVehicle(Vehicle vehicle)
 {
     BasicVehicle.createVehicle(vehicle);
 }
Example #11
0
 public static List <Vehicle> getVehicles()
 {
     return(BasicVehicle.getVehicles());
 }