public void CreateVehicleProps(VehicleProps vht)
 {
     if (vht == null)
     {
         throw new ArgumentNullException(nameof(vht));
     }
     _context.VehicleProps.Add(vht);
 }
        public void DeleteVehicleProps(VehicleProps vht)
        {
            if (vht == null)
            {
                throw new ArgumentNullException(nameof(vht));
            }

            _context.VehicleProps.Remove(vht);
        }
 public void UpdateVehicleProps(VehicleProps vht)
 {
     //Nothing
 }
Exemple #4
0
 public void UpdateVehicleProps(VehicleProps vht)
 {
     throw new NotImplementedException();
 }