public List <Identificacion> consultarIdentificacion()
 {
     using (var db = new MapeoIdentificacion())
     {
         return(db.identificacion.ToList());
     }
 }
 public bool crearIdentificacion(Identificacion identificacion)
 {
     using (var db = new MapeoIdentificacion())
     {
         int resultado = db.identificacion.Where(x => x.Id == identificacion.Id).Count();
         if (resultado == 0)
         {
             db.identificacion.Add(identificacion);
             db.SaveChanges();
             return(true);
         }
         else
         {
             return(false);
         }
     }
 }