Ejemplo n.º 1
0
        private static DatenDownloadClient CreateClient()
        {
            DatenDownloadClient client = new DatenDownloadClient("BasicHttpBinding_IDatenDownload");

            client.ClientCredentials.UserName.UserName = QualifoodBenutzername;
            client.ClientCredentials.UserName.Password = QualifoodPassword;
            return(client);
        }
Ejemplo n.º 2
0
        private static SchlachtdatenGV ExecuteRequest(DatenDownloadClient client)
        {
            var result = client.GetDatenDownloadGV(AbgefragtesSchlachtdatum);

            return(result);
        }