public bool deleteTour(int matour)
 {
     return(tourDal.DeleteTour(matour));
 }
        public void TestDeleteTour()
        {
            var tour = tourDAL.DeleteTour("");

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