예제 #1
0
 public bool deleteTour(int matour)
 {
     return(tourDal.DeleteTour(matour));
 }
예제 #2
0
        public void TestDeleteTour()
        {
            var tour = tourDAL.DeleteTour("");

            Assert.IsTrue(tour);
        }
예제 #3
0
 public bool DeleteTour(string id)
 {
     return(tourDAL.DeleteTour(id));
 }