public static void Add(Tour tour) { try { IsValid(tour); TourDAL.Add(tour); } catch (Exception ex) { throw ex; } }