Exemplo n.º 1
0
        public void DeleteTrip(string tripName, string username)
        {
            Trip trip = GetTripByNameAndUser(tripName, username);

            if (trip != null)
            {
                _context.Remove(trip);
            }
        }
Exemplo n.º 2
0
 public void DeleteTrip(Trip trip)
 {
     _context.Remove(trip);
 }