Exemplo n.º 1
0
 public void AddCovference(Conference conf)
 {
     if (conf != null)
     {
         conf.Id = Guid.NewGuid();
         _conferRepository.AddConference(conf);
     }
 }