/// <summary> /// Deserializes workflow markup into an Complemento_SPEISPEI_TerceroOrdenante object /// </summary> /// <param name="input">string workflow markup to deserialize</param> /// <param name="obj">Output Complemento_SPEISPEI_TerceroOrdenante object</param> /// <param name="exception">output Exception value if deserialize failed</param> /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns> public static bool Deserialize(string input, out Complemento_SPEISPEI_TerceroOrdenante obj, out System.Exception exception) { exception = null; obj = default(Complemento_SPEISPEI_TerceroOrdenante); try { obj = Deserialize(input); return(true); } catch (System.Exception ex) { exception = ex; return(false); } }
public static bool LeerDesdeArchivo(string fileName, out Complemento_SPEISPEI_TerceroOrdenante obj) { System.Exception exception = null; return(LeerDesdeArchivo(fileName, out obj, out exception)); }
public static bool LeerDesdeArchivo(string fileName, out Complemento_SPEISPEI_TerceroOrdenante obj, out System.Exception exception) { return(LeerDesdeArchivo(fileName, System.Text.Encoding.UTF8, out obj, out exception)); }
/// <summary> /// Deserializes xml markup from file into an Complemento_SPEISPEI_TerceroOrdenante object /// </summary> /// <param name="fileName">string xml file to load and deserialize</param> /// <param name="obj">Output Complemento_SPEISPEI_TerceroOrdenante object</param> /// <param name="exception">output Exception value if deserialize failed</param> /// <returns>true if this Serializer can deserialize the object; otherwise, false</returns> public static bool LeerDesdeArchivo(string fileName, System.Text.Encoding encoding, out Complemento_SPEISPEI_TerceroOrdenante obj, out System.Exception exception) { exception = null; obj = default(Complemento_SPEISPEI_TerceroOrdenante); try { obj = LeerDesdeArchivo(fileName, encoding); return(true); } catch (System.Exception ex) { exception = ex; return(false); } }
public static bool Deserialize(string input, out Complemento_SPEISPEI_TerceroOrdenante obj) { System.Exception exception = null; return(Deserialize(input, out obj, out exception)); }
/// <summary> /// Complemento_SPEISPEI_Tercero class constructor /// </summary> public SPEI_Tercero() { this._beneficiario = new Complemento_SPEISPEI_TerceroBeneficiario(); this._ordenante = new Complemento_SPEISPEI_TerceroOrdenante(); }