public bool Delete(Events evnt)
 {
     try
     {
         EventDAL evntDAL = new EventDAL();
         return(evntDAL.Delete(evnt));
     }
     catch (Exception)
     {
         throw;
     }
 }