Exemplo n.º 1
0
 public static int AddMessage(Message obj)
 {
     int result;
     TMSDataLibrary.Message objMsg = new TMSDataLibrary.Message();
     result = objMsg.AddMessege(obj.BookingId, obj.ToId, obj.FromId, obj.Messagee);
     return result;
 }
Exemplo n.º 2
0
 public static DataTable GetMessege(int bookingId)
 {
     TMSDataLibrary.Message objMsg = new TMSDataLibrary.Message();
     return objMsg.GetMessege(bookingId);
 }