コード例 #1
0
ファイル: TourPriceBLL.cs プロジェクト: huyquyentran/tour
        public static void Delete(int id)
        {
            var sourceTourPrice = TourPriceDAL.GetById(id);

            if (sourceTourPrice == null)
            {
                throw new Exception("Mã giá không tồn tại");
            }
            TourPriceDAL.Remove(sourceTourPrice);
        }