From ac23ad08578997a9ae634968a7fe406214cad54b Mon Sep 17 00:00:00 2001 From: Strati Date: Sun, 3 Jun 2018 17:24:48 +0200 Subject: [PATCH] initial commit adds new wpf client --- WebClient/WpfWebClient/App.config | 18 + WebClient/WpfWebClient/App.xaml | 9 + WebClient/WpfWebClient/App.xaml.cs | 17 + .../ServiceReferenceEHEC/Reference.cs | 971 ++++++++++++++++++ .../ServiceReferenceEHEC/Reference.svcmap | 35 + .../ServiceReferenceEHEC/Service.disco | 4 + .../ServiceReferenceEHEC/Service.wsdl | 191 ++++ .../ServiceReferenceEHEC/Service.xsd | 112 ++ .../ServiceReferenceEHEC/Service1.xsd | 42 + .../ServiceReferenceEHEC/Service2.xsd | 114 ++ ...ent.ServiceReferenceEHEC.Doctor.datasource | 10 + ...ent.ServiceReferenceEHEC.Gender.datasource | 10 + ...ServiceReferenceEHEC.Salutation.datasource | 10 + ...ent.ServiceReferenceEHEC.Strain.datasource | 10 + .../configuration.svcinfo | 10 + .../configuration91.svcinfo | 201 ++++ WebClient/WpfWebClient/Home.xaml | 15 + WebClient/WpfWebClient/Home.xaml.cs | 28 + WebClient/WpfWebClient/MainWindow.xaml | 25 + WebClient/WpfWebClient/MainWindow.xaml.cs | 48 + WebClient/WpfWebClient/PatientForm.xaml | 27 + WebClient/WpfWebClient/PatientForm.xaml.cs | 32 + .../WpfWebClient/Properties/AssemblyInfo.cs | 55 + .../Properties/Resources.Designer.cs | 71 ++ .../WpfWebClient/Properties/Resources.resx | 117 +++ .../Properties/Settings.Designer.cs | 30 + .../WpfWebClient/Properties/Settings.settings | 7 + WebClient/WpfWebClient/ViewCases.xaml | 15 + WebClient/WpfWebClient/ViewCases.xaml.cs | 28 + WebClient/WpfWebClient/ViewDoctors.xaml | 15 + WebClient/WpfWebClient/ViewDoctors.xaml.cs | 28 + WebClient/WpfWebClient/WpfWebClient.csproj | 177 ++++ WebClient/WpfWebClient/WpfWebClient.sln | 25 + WebClient/WpfWebClient/resources/eheclogo.png | Bin 0 -> 17624 bytes 34 files changed, 2507 insertions(+) create mode 100644 WebClient/WpfWebClient/App.config create mode 100644 WebClient/WpfWebClient/App.xaml create mode 100644 WebClient/WpfWebClient/App.xaml.cs create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.cs create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.svcmap create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.disco create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.wsdl create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.xsd create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service1.xsd create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service2.xsd create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Doctor.datasource create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Gender.datasource create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Salutation.datasource create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Strain.datasource create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration.svcinfo create mode 100644 WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration91.svcinfo create mode 100644 WebClient/WpfWebClient/Home.xaml create mode 100644 WebClient/WpfWebClient/Home.xaml.cs create mode 100644 WebClient/WpfWebClient/MainWindow.xaml create mode 100644 WebClient/WpfWebClient/MainWindow.xaml.cs create mode 100644 WebClient/WpfWebClient/PatientForm.xaml create mode 100644 WebClient/WpfWebClient/PatientForm.xaml.cs create mode 100644 WebClient/WpfWebClient/Properties/AssemblyInfo.cs create mode 100644 WebClient/WpfWebClient/Properties/Resources.Designer.cs create mode 100644 WebClient/WpfWebClient/Properties/Resources.resx create mode 100644 WebClient/WpfWebClient/Properties/Settings.Designer.cs create mode 100644 WebClient/WpfWebClient/Properties/Settings.settings create mode 100644 WebClient/WpfWebClient/ViewCases.xaml create mode 100644 WebClient/WpfWebClient/ViewCases.xaml.cs create mode 100644 WebClient/WpfWebClient/ViewDoctors.xaml create mode 100644 WebClient/WpfWebClient/ViewDoctors.xaml.cs create mode 100644 WebClient/WpfWebClient/WpfWebClient.csproj create mode 100644 WebClient/WpfWebClient/WpfWebClient.sln create mode 100644 WebClient/WpfWebClient/resources/eheclogo.png diff --git a/WebClient/WpfWebClient/App.config b/WebClient/WpfWebClient/App.config new file mode 100644 index 0000000..6b7b2c7 --- /dev/null +++ b/WebClient/WpfWebClient/App.config @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/App.xaml b/WebClient/WpfWebClient/App.xaml new file mode 100644 index 0000000..68cd736 --- /dev/null +++ b/WebClient/WpfWebClient/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/WebClient/WpfWebClient/App.xaml.cs b/WebClient/WpfWebClient/App.xaml.cs new file mode 100644 index 0000000..9c54bd8 --- /dev/null +++ b/WebClient/WpfWebClient/App.xaml.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Data; +using System.Linq; +using System.Threading.Tasks; +using System.Windows; + +namespace WpfWebClient +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } +} diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.cs b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.cs new file mode 100644 index 0000000..35cc055 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.cs @@ -0,0 +1,971 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WpfWebClient.ServiceReferenceEHEC { + 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="Person", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + [System.Runtime.Serialization.KnownTypeAttribute(typeof(WpfWebClient.ServiceReferenceEHEC.Doctor))] + public partial class Person : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.City CityField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string FirstNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Gender GenderField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string LastNameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int PersonIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Salutation SalutationField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string StreetNameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.City City { + get { + return this.CityField; + } + set { + if ((object.ReferenceEquals(this.CityField, value) != true)) { + this.CityField = value; + this.RaisePropertyChanged("City"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string FirstName { + get { + return this.FirstNameField; + } + set { + if ((object.ReferenceEquals(this.FirstNameField, value) != true)) { + this.FirstNameField = value; + this.RaisePropertyChanged("FirstName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Gender Gender { + get { + return this.GenderField; + } + set { + if ((object.ReferenceEquals(this.GenderField, value) != true)) { + this.GenderField = value; + this.RaisePropertyChanged("Gender"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string LastName { + get { + return this.LastNameField; + } + set { + if ((object.ReferenceEquals(this.LastNameField, value) != true)) { + this.LastNameField = value; + this.RaisePropertyChanged("LastName"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int PersonId { + get { + return this.PersonIdField; + } + set { + if ((this.PersonIdField.Equals(value) != true)) { + this.PersonIdField = value; + this.RaisePropertyChanged("PersonId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Salutation Salutation { + get { + return this.SalutationField; + } + set { + if ((object.ReferenceEquals(this.SalutationField, value) != true)) { + this.SalutationField = value; + this.RaisePropertyChanged("Salutation"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string StreetName { + get { + return this.StreetNameField; + } + set { + if ((object.ReferenceEquals(this.StreetNameField, value) != true)) { + this.StreetNameField = value; + this.RaisePropertyChanged("StreetName"); + } + } + } + + 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="City", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class City : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int CityIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Country CountryField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int ZipCodeField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int CityId { + get { + return this.CityIdField; + } + set { + if ((this.CityIdField.Equals(value) != true)) { + this.CityIdField = value; + this.RaisePropertyChanged("CityId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Country Country { + get { + return this.CountryField; + } + set { + if ((object.ReferenceEquals(this.CountryField, value) != true)) { + this.CountryField = value; + this.RaisePropertyChanged("Country"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int ZipCode { + get { + return this.ZipCodeField; + } + set { + if ((this.ZipCodeField.Equals(value) != true)) { + this.ZipCodeField = value; + this.RaisePropertyChanged("ZipCode"); + } + } + } + + 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="Gender", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Gender : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int GenderIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int GenderId { + get { + return this.GenderIdField; + } + set { + if ((this.GenderIdField.Equals(value) != true)) { + this.GenderIdField = value; + this.RaisePropertyChanged("GenderId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + 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="Salutation", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Salutation : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int SalutationIdField; + + [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 Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int SalutationId { + get { + return this.SalutationIdField; + } + set { + if ((this.SalutationIdField.Equals(value) != true)) { + this.SalutationIdField = value; + this.RaisePropertyChanged("SalutationId"); + } + } + } + + 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="Doctor", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Doctor : WpfWebClient.ServiceReferenceEHEC.Person { + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int DoctorIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Status StatusField; + + [System.Runtime.Serialization.DataMemberAttribute()] + public int DoctorId { + get { + return this.DoctorIdField; + } + set { + if ((this.DoctorIdField.Equals(value) != true)) { + this.DoctorIdField = value; + this.RaisePropertyChanged("DoctorId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Status Status { + get { + return this.StatusField; + } + set { + if ((object.ReferenceEquals(this.StatusField, value) != true)) { + this.StatusField = value; + this.RaisePropertyChanged("Status"); + } + } + } + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] + [System.Runtime.Serialization.DataContractAttribute(Name="Country", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Country : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int CountryIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int CountryId { + get { + return this.CountryIdField; + } + set { + if ((this.CountryIdField.Equals(value) != true)) { + this.CountryIdField = value; + this.RaisePropertyChanged("CountryId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + 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="Status", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Status : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int StatusIdField; + + [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 Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int StatusId { + get { + return this.StatusIdField; + } + set { + if ((this.StatusIdField.Equals(value) != true)) { + this.StatusIdField = value; + this.RaisePropertyChanged("StatusId"); + } + } + } + + 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="Exam", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Exam : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private System.DateTime DateField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Doctor DoctorField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int ExamIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Person PatientField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Result ResultField; + + [global::System.ComponentModel.BrowsableAttribute(false)] + public System.Runtime.Serialization.ExtensionDataObject ExtensionData { + get { + return this.extensionDataField; + } + set { + this.extensionDataField = value; + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public System.DateTime Date { + get { + return this.DateField; + } + set { + if ((this.DateField.Equals(value) != true)) { + this.DateField = value; + this.RaisePropertyChanged("Date"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Doctor Doctor { + get { + return this.DoctorField; + } + set { + if ((object.ReferenceEquals(this.DoctorField, value) != true)) { + this.DoctorField = value; + this.RaisePropertyChanged("Doctor"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int ExamId { + get { + return this.ExamIdField; + } + set { + if ((this.ExamIdField.Equals(value) != true)) { + this.ExamIdField = value; + this.RaisePropertyChanged("ExamId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Person Patient { + get { + return this.PatientField; + } + set { + if ((object.ReferenceEquals(this.PatientField, value) != true)) { + this.PatientField = value; + this.RaisePropertyChanged("Patient"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Result Result { + get { + return this.ResultField; + } + set { + if ((object.ReferenceEquals(this.ResultField, value) != true)) { + this.ResultField = value; + this.RaisePropertyChanged("Result"); + } + } + } + + 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="Result", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Result : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string DescriptionField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private bool InfectedField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int ResultIdField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private WpfWebClient.ServiceReferenceEHEC.Strain StrainField; + + [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 Description { + get { + return this.DescriptionField; + } + set { + if ((object.ReferenceEquals(this.DescriptionField, value) != true)) { + this.DescriptionField = value; + this.RaisePropertyChanged("Description"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public bool Infected { + get { + return this.InfectedField; + } + set { + if ((this.InfectedField.Equals(value) != true)) { + this.InfectedField = value; + this.RaisePropertyChanged("Infected"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public string Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int ResultId { + get { + return this.ResultIdField; + } + set { + if ((this.ResultIdField.Equals(value) != true)) { + this.ResultIdField = value; + this.RaisePropertyChanged("ResultId"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public WpfWebClient.ServiceReferenceEHEC.Strain Strain { + get { + return this.StrainField; + } + set { + if ((object.ReferenceEquals(this.StrainField, value) != true)) { + this.StrainField = value; + this.RaisePropertyChanged("Strain"); + } + } + } + + 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="Strain", Namespace="http://schemas.datacontract.org/2004/07/Server.Models")] + [System.SerializableAttribute()] + public partial class Strain : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { + + [System.NonSerializedAttribute()] + private System.Runtime.Serialization.ExtensionDataObject extensionDataField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private string NameField; + + [System.Runtime.Serialization.OptionalFieldAttribute()] + private int StrainIdField; + + [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 Name { + get { + return this.NameField; + } + set { + if ((object.ReferenceEquals(this.NameField, value) != true)) { + this.NameField = value; + this.RaisePropertyChanged("Name"); + } + } + } + + [System.Runtime.Serialization.DataMemberAttribute()] + public int StrainId { + get { + return this.StrainIdField; + } + set { + if ((this.StrainIdField.Equals(value) != true)) { + this.StrainIdField = value; + this.RaisePropertyChanged("StrainId"); + } + } + } + + 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="ServiceReferenceEHEC.IService")] + public interface IService { + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WritePatient", ReplyAction="http://tempuri.org/IService/WritePatientResponse")] + void WritePatient(WpfWebClient.ServiceReferenceEHEC.Person person); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WritePatient", ReplyAction="http://tempuri.org/IService/WritePatientResponse")] + System.Threading.Tasks.Task WritePatientAsync(WpfWebClient.ServiceReferenceEHEC.Person person); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteExam", ReplyAction="http://tempuri.org/IService/WriteExamResponse")] + void WriteExam(WpfWebClient.ServiceReferenceEHEC.Exam exam); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteExam", ReplyAction="http://tempuri.org/IService/WriteExamResponse")] + System.Threading.Tasks.Task WriteExamAsync(WpfWebClient.ServiceReferenceEHEC.Exam exam); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteResult", ReplyAction="http://tempuri.org/IService/WriteResultResponse")] + void WriteResult(WpfWebClient.ServiceReferenceEHEC.Result result); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteResult", ReplyAction="http://tempuri.org/IService/WriteResultResponse")] + System.Threading.Tasks.Task WriteResultAsync(WpfWebClient.ServiceReferenceEHEC.Result result); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteCity", ReplyAction="http://tempuri.org/IService/WriteCityResponse")] + void WriteCity(WpfWebClient.ServiceReferenceEHEC.City city); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteCity", ReplyAction="http://tempuri.org/IService/WriteCityResponse")] + System.Threading.Tasks.Task WriteCityAsync(WpfWebClient.ServiceReferenceEHEC.City city); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteCountry", ReplyAction="http://tempuri.org/IService/WriteCountryResponse")] + void WriteCountry(WpfWebClient.ServiceReferenceEHEC.Country country); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/WriteCountry", ReplyAction="http://tempuri.org/IService/WriteCountryResponse")] + System.Threading.Tasks.Task WriteCountryAsync(WpfWebClient.ServiceReferenceEHEC.Country country); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetGenders", ReplyAction="http://tempuri.org/IService/GetGendersResponse")] + WpfWebClient.ServiceReferenceEHEC.Gender[] GetGenders(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetGenders", ReplyAction="http://tempuri.org/IService/GetGendersResponse")] + System.Threading.Tasks.Task GetGendersAsync(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetSalutations", ReplyAction="http://tempuri.org/IService/GetSalutationsResponse")] + WpfWebClient.ServiceReferenceEHEC.Salutation[] GetSalutations(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetSalutations", ReplyAction="http://tempuri.org/IService/GetSalutationsResponse")] + System.Threading.Tasks.Task GetSalutationsAsync(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetStrains", ReplyAction="http://tempuri.org/IService/GetStrainsResponse")] + WpfWebClient.ServiceReferenceEHEC.Strain[] GetStrains(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetStrains", ReplyAction="http://tempuri.org/IService/GetStrainsResponse")] + System.Threading.Tasks.Task GetStrainsAsync(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetDoctors", ReplyAction="http://tempuri.org/IService/GetDoctorsResponse")] + WpfWebClient.ServiceReferenceEHEC.Doctor[] GetDoctors(); + + [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IService/GetDoctors", ReplyAction="http://tempuri.org/IService/GetDoctorsResponse")] + System.Threading.Tasks.Task GetDoctorsAsync(); + } + + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public interface IServiceChannel : WpfWebClient.ServiceReferenceEHEC.IService, System.ServiceModel.IClientChannel { + } + + [System.Diagnostics.DebuggerStepThroughAttribute()] + [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] + public partial class ServiceClient : System.ServiceModel.ClientBase, WpfWebClient.ServiceReferenceEHEC.IService { + + public ServiceClient() { + } + + public ServiceClient(string endpointConfigurationName) : + base(endpointConfigurationName) { + } + + public ServiceClient(string endpointConfigurationName, string remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public ServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : + base(endpointConfigurationName, remoteAddress) { + } + + public ServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : + base(binding, remoteAddress) { + } + + public void WritePatient(WpfWebClient.ServiceReferenceEHEC.Person person) { + base.Channel.WritePatient(person); + } + + public System.Threading.Tasks.Task WritePatientAsync(WpfWebClient.ServiceReferenceEHEC.Person person) { + return base.Channel.WritePatientAsync(person); + } + + public void WriteExam(WpfWebClient.ServiceReferenceEHEC.Exam exam) { + base.Channel.WriteExam(exam); + } + + public System.Threading.Tasks.Task WriteExamAsync(WpfWebClient.ServiceReferenceEHEC.Exam exam) { + return base.Channel.WriteExamAsync(exam); + } + + public void WriteResult(WpfWebClient.ServiceReferenceEHEC.Result result) { + base.Channel.WriteResult(result); + } + + public System.Threading.Tasks.Task WriteResultAsync(WpfWebClient.ServiceReferenceEHEC.Result result) { + return base.Channel.WriteResultAsync(result); + } + + public void WriteCity(WpfWebClient.ServiceReferenceEHEC.City city) { + base.Channel.WriteCity(city); + } + + public System.Threading.Tasks.Task WriteCityAsync(WpfWebClient.ServiceReferenceEHEC.City city) { + return base.Channel.WriteCityAsync(city); + } + + public void WriteCountry(WpfWebClient.ServiceReferenceEHEC.Country country) { + base.Channel.WriteCountry(country); + } + + public System.Threading.Tasks.Task WriteCountryAsync(WpfWebClient.ServiceReferenceEHEC.Country country) { + return base.Channel.WriteCountryAsync(country); + } + + public WpfWebClient.ServiceReferenceEHEC.Gender[] GetGenders() { + return base.Channel.GetGenders(); + } + + public System.Threading.Tasks.Task GetGendersAsync() { + return base.Channel.GetGendersAsync(); + } + + public WpfWebClient.ServiceReferenceEHEC.Salutation[] GetSalutations() { + return base.Channel.GetSalutations(); + } + + public System.Threading.Tasks.Task GetSalutationsAsync() { + return base.Channel.GetSalutationsAsync(); + } + + public WpfWebClient.ServiceReferenceEHEC.Strain[] GetStrains() { + return base.Channel.GetStrains(); + } + + public System.Threading.Tasks.Task GetStrainsAsync() { + return base.Channel.GetStrainsAsync(); + } + + public WpfWebClient.ServiceReferenceEHEC.Doctor[] GetDoctors() { + return base.Channel.GetDoctors(); + } + + public System.Threading.Tasks.Task GetDoctorsAsync() { + return base.Channel.GetDoctorsAsync(); + } + } +} diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.svcmap b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.svcmap new file mode 100644 index 0000000..bad882e --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Reference.svcmap @@ -0,0 +1,35 @@ + + + + false + true + true + + false + false + false + + + true + Auto + true + true + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.disco b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.disco new file mode 100644 index 0000000..613b35a --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.disco @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.wsdl b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.wsdl new file mode 100644 index 0000000..3f0ba22 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.wsdl @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.xsd b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.xsd new file mode 100644 index 0000000..c285411 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service.xsd @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service1.xsd b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service1.xsd new file mode 100644 index 0000000..d58e7f3 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service1.xsd @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service2.xsd b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service2.xsd new file mode 100644 index 0000000..e01f36c --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/Service2.xsd @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Doctor.datasource b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Doctor.datasource new file mode 100644 index 0000000..0c9f0d3 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Doctor.datasource @@ -0,0 +1,10 @@ + + + + WpfWebClient.ServiceReferenceEHEC.Doctor, Connected Services.ServiceReferenceEHEC.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Gender.datasource b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Gender.datasource new file mode 100644 index 0000000..123e3a7 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Gender.datasource @@ -0,0 +1,10 @@ + + + + WpfWebClient.ServiceReferenceEHEC.Gender, Connected Services.ServiceReferenceEHEC.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Salutation.datasource b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Salutation.datasource new file mode 100644 index 0000000..fada85a --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Salutation.datasource @@ -0,0 +1,10 @@ + + + + WpfWebClient.ServiceReferenceEHEC.Salutation, Connected Services.ServiceReferenceEHEC.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Strain.datasource b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Strain.datasource new file mode 100644 index 0000000..e6ff296 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/WpfWebClient.ServiceReferenceEHEC.Strain.datasource @@ -0,0 +1,10 @@ + + + + WpfWebClient.ServiceReferenceEHEC.Strain, Connected Services.ServiceReferenceEHEC.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration.svcinfo b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration.svcinfo new file mode 100644 index 0000000..0fd193a --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration.svcinfo @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration91.svcinfo b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration91.svcinfo new file mode 100644 index 0000000..7692c27 --- /dev/null +++ b/WebClient/WpfWebClient/Connected Services/ServiceReferenceEHEC/configuration91.svcinfo @@ -0,0 +1,201 @@ + + + + + + + BasicHttpBinding_IService + + + + + + + + + + + + + + + + + + + + + StrongWildcard + + + + + + 65536 + + + + + + + + + System.ServiceModel.Configuration.XmlDictionaryReaderQuotasElement + + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + + + System.Text.UTF8Encoding + + + Buffered + + + + + + Text + + + System.ServiceModel.Configuration.BasicHttpSecurityElement + + + None + + + System.ServiceModel.Configuration.HttpTransportSecurityElement + + + None + + + None + + + System.Security.Authentication.ExtendedProtection.Configuration.ExtendedProtectionPolicyElement + + + Never + + + TransportSelected + + + (Collection) + + + + + + System.ServiceModel.Configuration.BasicHttpMessageSecurityElement + + + UserName + + + Default + + + + + + + + + http://localhost:8000/Service.svc + + + + + + basicHttpBinding + + + BasicHttpBinding_IService + + + ServiceReferenceEHEC.IService + + + System.ServiceModel.Configuration.AddressHeaderCollectionElement + + + <Header /> + + + System.ServiceModel.Configuration.IdentityElement + + + System.ServiceModel.Configuration.UserPrincipalNameElement + + + + + + System.ServiceModel.Configuration.ServicePrincipalNameElement + + + + + + System.ServiceModel.Configuration.DnsElement + + + + + + System.ServiceModel.Configuration.RsaElement + + + + + + System.ServiceModel.Configuration.CertificateElement + + + + + + System.ServiceModel.Configuration.CertificateReferenceElement + + + My + + + LocalMachine + + + FindBySubjectDistinguishedName + + + + + + False + + + BasicHttpBinding_IService + + + + + + + + + + + \ No newline at end of file diff --git a/WebClient/WpfWebClient/Home.xaml b/WebClient/WpfWebClient/Home.xaml new file mode 100644 index 0000000..32715d2 --- /dev/null +++ b/WebClient/WpfWebClient/Home.xaml @@ -0,0 +1,15 @@ + + + + + diff --git a/WebClient/WpfWebClient/Home.xaml.cs b/WebClient/WpfWebClient/Home.xaml.cs new file mode 100644 index 0000000..e1a9c9c --- /dev/null +++ b/WebClient/WpfWebClient/Home.xaml.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace WpfWebClient +{ + /// + /// Interaction logic for Home.xaml + /// + public partial class Home : Page + { + public Home() + { + InitializeComponent(); + } + } +} diff --git a/WebClient/WpfWebClient/MainWindow.xaml b/WebClient/WpfWebClient/MainWindow.xaml new file mode 100644 index 0000000..fb9b121 --- /dev/null +++ b/WebClient/WpfWebClient/MainWindow.xaml @@ -0,0 +1,25 @@ + + + + + + + +