Exemplo n.º 1
0
 public void AddParticipant(participants participant)
 {
     using (mydbEntities2 ent = new mydbEntities2())
     {
         ent.participants.Add(participant);
         ent.SaveChanges();
     }
 }
Exemplo n.º 2
0
 public void SaveRegisterDto(BachelorBackEnd.participants participantobj)
 {
     //ResearcherDAO.AddParticipant(participantobj);
 }