//------------------------------------------------------------------------------ // // 此代码由工具生成。 // 运行时版本:4.0.30319.42000 // // 对此文件的更改可能会导致不正确的行为,并且如果 // 重新生成代码,这些更改将会丢失。 // //------------------------------------------------------------------------------ namespace NFine.Application.CreateApBilleFile { using System.Runtime.Serialization; using System; [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] [System.Runtime.Serialization.DataContractAttribute(Name="CreateAPBillFileSV.APBillFileModel", Namespace="http://schemas.datacontract.org/2004/07/UFIDA.ISV.CreateAPBillFileSV")] [System.SerializableAttribute()] public partial class CreateAPBillFileSVAPBillFileModel : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { [System.NonSerializedAttribute()] private System.Runtime.Serialization.ExtensionDataObject extensionDataField; [System.Runtime.Serialization.OptionalFieldAttribute()] private string DocNoField; [System.Runtime.Serialization.OptionalFieldAttribute()] private string EntityFullNameField; [System.Runtime.Serialization.OptionalFieldAttribute()] private byte[] FileContentField; [System.Runtime.Serialization.OptionalFieldAttribute()] private int FileLengthField; [System.Runtime.Serialization.OptionalFieldAttribute()] private string FileNameField; [System.Runtime.Serialization.OptionalFieldAttribute()] private string FileSizeField; [System.Runtime.Serialization.OptionalFieldAttribute()] private string OrgCodeField; [global::System.ComponentModel.BrowsableAttribute(false)] public System.Runtime.Serialization.ExtensionDataObject ExtensionData { get { return this.extensionDataField; } set { this.extensionDataField = value; } } [System.Runtime.Serialization.DataMemberAttribute()] public string DocNo { get { return this.DocNoField; } set { if ((object.ReferenceEquals(this.DocNoField, value) != true)) { this.DocNoField = value; this.RaisePropertyChanged("DocNo"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public string EntityFullName { get { return this.EntityFullNameField; } set { if ((object.ReferenceEquals(this.EntityFullNameField, value) != true)) { this.EntityFullNameField = value; this.RaisePropertyChanged("EntityFullName"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public byte[] FileContent { get { return this.FileContentField; } set { if ((object.ReferenceEquals(this.FileContentField, value) != true)) { this.FileContentField = value; this.RaisePropertyChanged("FileContent"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public int FileLength { get { return this.FileLengthField; } set { if ((this.FileLengthField.Equals(value) != true)) { this.FileLengthField = value; this.RaisePropertyChanged("FileLength"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public string FileName { get { return this.FileNameField; } set { if ((object.ReferenceEquals(this.FileNameField, value) != true)) { this.FileNameField = value; this.RaisePropertyChanged("FileName"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public string FileSize { get { return this.FileSizeField; } set { if ((object.ReferenceEquals(this.FileSizeField, value) != true)) { this.FileSizeField = value; this.RaisePropertyChanged("FileSize"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public string OrgCode { get { return this.OrgCodeField; } set { if ((object.ReferenceEquals(this.OrgCodeField, value) != true)) { this.OrgCodeField = value; this.RaisePropertyChanged("OrgCode"); } } } public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; protected void RaisePropertyChanged(string propertyName) { System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; if ((propertyChanged != null)) { propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); } } } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] [System.Runtime.Serialization.DataContractAttribute(Name="CreateAPBillFileSV.OperationResult", Namespace="http://schemas.datacontract.org/2004/07/UFIDA.ISV.CreateAPBillFileSV")] [System.SerializableAttribute()] public partial class CreateAPBillFileSVOperationResult : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { [System.NonSerializedAttribute()] private System.Runtime.Serialization.ExtensionDataObject extensionDataField; [System.Runtime.Serialization.OptionalFieldAttribute()] private bool IsSuccessField; [System.Runtime.Serialization.OptionalFieldAttribute()] private string MessageField; [global::System.ComponentModel.BrowsableAttribute(false)] public System.Runtime.Serialization.ExtensionDataObject ExtensionData { get { return this.extensionDataField; } set { this.extensionDataField = value; } } [System.Runtime.Serialization.DataMemberAttribute()] public bool IsSuccess { get { return this.IsSuccessField; } set { if ((this.IsSuccessField.Equals(value) != true)) { this.IsSuccessField = value; this.RaisePropertyChanged("IsSuccess"); } } } [System.Runtime.Serialization.DataMemberAttribute()] public string Message { get { return this.MessageField; } set { if ((object.ReferenceEquals(this.MessageField, value) != true)) { this.MessageField = value; this.RaisePropertyChanged("Message"); } } } public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; protected void RaisePropertyChanged(string propertyName) { System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; if ((propertyChanged != null)) { propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); } } } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] [System.ServiceModel.ServiceContractAttribute(ConfigurationName="CreateApBilleFile.ICreateApBilleFile")] public interface ICreateApBilleFile { [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ICreateApBilleFile/CustCreateAPBillFile", ReplyAction="http://tempuri.org/ICreateApBilleFile/CustCreateAPBillFileResponse")] NFine.Application.CreateApBilleFile.CreateAPBillFileSVOperationResult CustCreateAPBillFile(NFine.Application.CreateApBilleFile.CreateAPBillFileSVAPBillFileModel model); [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/ICreateApBilleFile/CustCreateAPBillFile", ReplyAction="http://tempuri.org/ICreateApBilleFile/CustCreateAPBillFileResponse")] System.Threading.Tasks.Task CustCreateAPBillFileAsync(NFine.Application.CreateApBilleFile.CreateAPBillFileSVAPBillFileModel model); } [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public interface ICreateApBilleFileChannel : NFine.Application.CreateApBilleFile.ICreateApBilleFile, System.ServiceModel.IClientChannel { } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] public partial class CreateApBilleFileClient : System.ServiceModel.ClientBase, NFine.Application.CreateApBilleFile.ICreateApBilleFile { public CreateApBilleFileClient() { } public CreateApBilleFileClient(string endpointConfigurationName) : base(endpointConfigurationName) { } public CreateApBilleFileClient(string endpointConfigurationName, string remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public CreateApBilleFileClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : base(endpointConfigurationName, remoteAddress) { } public CreateApBilleFileClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : base(binding, remoteAddress) { } public NFine.Application.CreateApBilleFile.CreateAPBillFileSVOperationResult CustCreateAPBillFile(NFine.Application.CreateApBilleFile.CreateAPBillFileSVAPBillFileModel model) { return base.Channel.CustCreateAPBillFile(model); } public System.Threading.Tasks.Task CustCreateAPBillFileAsync(NFine.Application.CreateApBilleFile.CreateAPBillFileSVAPBillFileModel model) { return base.Channel.CustCreateAPBillFileAsync(model); } } }