Пример #1
0
 public string AddEventBookingDetails(string name, string gender, int age, string email, string mob, string address, int stagboy, int staggirl, int couple, int child, decimal bookingAmt)
 {
     try
     {
         string      tranid      = "";
         DALSchedule objSchedule = new DALSchedule();
         tranid = objSchedule.AddEventBookingDetails(name, gender, age, email, mob, address, stagboy, staggirl, couple, child, bookingAmt, out tranid);
         return(tranid);
     }
     catch (Exception)
     {
         throw;
     }
 }