public void Eliminar(int id)
        {
            IPacienteService proxy = ServiceFactory.Get <IPacienteService>();

            try
            {
                proxy.Eliminar(id);
            }
            catch (FaultException fex)
            {
                throw new ApplicationException(fex.Message);
            }
        }