Example #1
0
 /// <summary>
 /// There are no comments for V_scheduleSet in the schema.
 /// </summary>
 public void AddToV_scheduleSet(V_schedule v_schedule)
 {
     base.AddObject("V_scheduleSet", v_schedule);
 }
Example #2
0
 /// <summary>
 /// Create a new V_schedule object.
 /// </summary>
 /// <param name="scheduleId">Initial value of scheduleId.</param>
 /// <param name="tourId">Initial value of tourId.</param>
 /// <param name="subTitle">Initial value of subTitle.</param>
 /// <param name="startDate">Initial value of startDate.</param>
 /// <param name="priceAdult">Initial value of priceAdult.</param>
 /// <param name="priceChild">Initial value of priceChild.</param>
 /// <param name="maxSeats">Initial value of maxSeats.</param>
 /// <param name="bookCustomers">Initial value of bookCustomers.</param>
 /// <param name="actualCustomers">Initial value of actualCustomers.</param>
 public static V_schedule CreateV_schedule(int scheduleId, int tourId, string subTitle, global::System.DateTime startDate, decimal priceAdult, decimal priceChild, int maxSeats, int bookCustomers, int actualCustomers)
 {
     V_schedule v_schedule = new V_schedule();
     v_schedule.scheduleId = scheduleId;
     v_schedule.tourId = tourId;
     v_schedule.subTitle = subTitle;
     v_schedule.startDate = startDate;
     v_schedule.priceAdult = priceAdult;
     v_schedule.priceChild = priceChild;
     v_schedule.maxSeats = maxSeats;
     v_schedule.bookCustomers = bookCustomers;
     v_schedule.actualCustomers = actualCustomers;
     return v_schedule;
 }