Esempio n. 1
0
        public static void Delete(int id)
        {
            var sourceTour = TourDAL.GetById(id);

            if (sourceTour == null)
            {
                throw new Exception("Mã tour không tồn tại");
            }
            TourDAL.Remove(sourceTour);
        }