public Convenio GetById(Convenio cardType) { try { return(_crudFactory.Retrieve <Convenio>(cardType)); } catch (Exception e) { ExceptionManager.GetInstance().Process(e); } return(new Convenio()); }
public Convenio RetrieveByName(string pconvenio) { var tipo = new Convenio(); try { tipo = _crudFactory.Retrieve <Convenio>(pconvenio); if (tipo != null) { return(tipo); } else { throw gestorEx.controlarExcepcion(new TRV_Exception(TRV_Exception.ExceptionCode.NoData)); } } catch (TRV_Exception ex) { throw ex; } }