Example #1
0
        public void Insert(HistoricoPacienteInsertDTO historicoPaciente)
        {
            var r = mapper.Map <historicopaciente>(historicoPaciente);

            r.idhispaciente = Guid.NewGuid();
            repository.Insert(r);
        }
Example #2
0
 public void Insert(HistoricoPacienteInsertDTO historico)
 {
     service.Insert(historico);
 }