/// <summary> /// /// </summary> /// <param name="elemento"></param> /// <returns></returns> public ElementoRubrica Update(ElementoRubrica elemento) { try { return(this.Services.UpdateMulticasella(elemento)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="elemento"></param> public void Delete(ElementoRubrica elemento) { try { this.Services.Delete(elemento); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="idElemento"></param> /// <returns></returns> public ElementoRubrica Get(int idElemento) { try { return(this.Services.Get(idElemento)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="elemento"></param> /// <returns></returns> public ElementoRubrica Insert(ElementoRubrica elemento) { try { return(this.Services.Insert(elemento)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="idUtente"></param> /// <returns></returns> public Utente Get(int idUtente) { try { return(this.Services.Get(idUtente)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="opzioniRicerca"></param> /// <returns></returns> public Utente[] Search(ref OpzioniRicerca opzioniRicerca) { try { return(this.Services.Search(ref opzioniRicerca)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="elemento"></param> public void Delete(Utente utente) { try { this.Services.Delete(utente); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="utente"></param> /// <returns></returns> public Utente Update(Utente utente) { try { return(this.Services.Update(utente)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }
/// <summary> /// /// </summary> /// <param name="opzioniRicerca"></param> /// <returns></returns> public ElementoRubrica[] Search(ref OpzioniRicerca opzioniRicerca) { //DocsPaUtils.LogsManagement.Debugger.Write("ElementoRubrica[] Search(ref OpzioniRicerca opzioniRicerca) start"); try { return(this.Services.Search(ref opzioniRicerca)); } catch (SoapException ex) { throw SoapExceptionParser.GetOriginalException(ex); } }