public static decimal LaskeVeroprosentti(VerotettavaTulomaara lahtoarvot)
 {
     BasicHttpBinding basicHttpBinding = new BasicHttpBinding();
     EndpointAddress endpointAddress = new EndpointAddress("http://localhost:56071/ADMCompletedDemoService.svc");
     IADMCompletedDemoService service =
         new ChannelFactory< IADMCompletedDemoService >(basicHttpBinding, endpointAddress).CreateChannel();
     var serviceResponse = service.LaskeVeroprosentti(lahtoarvot);
     return serviceResponse;
 }