public void CCRemoveChat(int chatid)
 {
     BU.Chat MyBU = new BU.Chat();
     MyBU.RemoveChat(chatid);
 }
Example #2
0
 public void CCCreateRoom(int chatid, string globalchat)
 {
     BU.Chat MyBU = new BU.Chat();
     MyBU.CreateChat(chatid, globalchat);
 }