public DependentePaciente Get(int idPaciente, int id)
 {
     try
     {
         using (var repositorio = new DependenteRepositorio(new Connection(new System.Data.SqlClient.SqlConnection())))
         {
             return(repositorio.Buscar(new DependentePaciente()
             {
                 IdPaciente = idPaciente
             }).Where(x => x.Id == id).FirstOrDefault());;
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public IEnumerable <DependentePaciente> Get(int idPaciente)
 {
     try
     {
         using (var repositorio = new DependenteRepositorio(new Connection(new System.Data.SqlClient.SqlConnection())))
         {
             return(repositorio.Buscar(new DependentePaciente()
             {
                 IdPaciente = idPaciente
             }).Where(x => x.IdPaciente == idPaciente));
         }
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }