public override SatResponse SoftwareUpdate() { return(new SatResponse().Create(Marshal.PtrToStringAnsi(OffLine.AtualizarSoftwareSAT(this.GenerateSessionCode(), this.ActivationCode)))); }
public override SatResponse ConfigureLan(string xmlConfiguration) { return(new SatResponse().Create(Marshal.PtrToStringAnsi(OffLine.ConfigurarInterfaceDeRede(this.GenerateSessionCode(), this.ActivationCode, xmlConfiguration)))); }
public override SatResponse AssignSignature(string cnpj, string signature) { return(new SatResponse().Create(Marshal.PtrToStringAnsi(OffLine.AssociarAssinatura(this.GenerateSessionCode(), this.ActivationCode, cnpj, signature)))); }
public override SatResponse CheckAvailability() { return(new SatResponse().Create(Marshal.PtrToStringAnsi(OffLine.ConsultarSAT(this.GenerateSessionCode())))); }
public override SatResponse CheckCommunication(string xml) { return((SatResponse) new CheckCommunicationResponse().Create(Marshal.PtrToStringAnsi(OffLine.TesteFimAFim(this.GenerateSessionCode(), this.ActivationCode, xml)))); }
public override InquireResponse Inquire(int sessionCode) { return(new InquireResponse().Create(Marshal.PtrToStringAnsi(OffLine.ConsultarNumeroSessao(this.GenerateSessionCode(), this.ActivationCode, sessionCode)))); }
public override CancelResponse Cancel(string key, string xml) { return(new CancelResponse().Create(Marshal.PtrToStringAnsi(OffLine.CancelarUltimaVenda(this.GenerateSessionCode(), this.ActivationCode, key, xml)))); }
public override SendResponse Send(string xml) { return(new SendResponse().Create(Marshal.PtrToStringAnsi(OffLine.EnviarDadosVenda(this.GenerateSessionCode(), this.ActivationCode, xml)))); }
public override GetStatusResponse GetStatus() { return(new GetStatusResponse().Create(Marshal.PtrToStringAnsi(OffLine.ConsultarStatusOperacional(this.GenerateSessionCode(), this.ActivationCode)))); }
public override SatResponse ChangeActivationCode(int option, string newActivationCode, string newActivationCodeConfirmation) { return(new SatResponse().Create(Marshal.PtrToStringAnsi(OffLine.TrocarCodigoDeAtivacao(this.GenerateSessionCode(), this.ActivationCode, option, newActivationCode, newActivationCodeConfirmation)))); }
public override SatResponse Unlock() { return(new SatResponse().Create(Marshal.PtrToStringAnsi(OffLine.DesbloquearSAT(this.GenerateSessionCode(), this.ActivationCode)))); }
public override SatResponse ExtractLog() { return((SatResponse) new ExtractLogResponse().Create(Marshal.PtrToStringAnsi(OffLine.ExtrairLogs(this.GenerateSessionCode(), this.ActivationCode)))); }