Ejemplo n.º 1
0
 public void EditConference(Conference element, string username, string password)
 {
     IManager<Conference> business = new ConferenceBusiness();
     business.Edit(element, username, password);
 }
Ejemplo n.º 2
0
 public int AddConference(Conference element, string username, string password)
 {
     IManager<Conference> business = new ConferenceBusiness();
     return business.Add(element, username, password);
 }