示例#1
0
 /* ****************************************************************** */
 /* Methods                                                            */
 /* ****************************************************************** */
 public string insertTopic(TopicBE topic)
 {
     string code = "";
     // Do stuff here
     return code;
 }
示例#2
0
 public void updateTopic(TopicBE topic)
 {
     // Do stuff here
 }
示例#3
0
 public TopicBE getTopic(string code)
 {
     TopicBE topic= new TopicBE();
     // Do stuff here
     return topic;
 }