public System.Threading.Tasks.Task <WebApplication2.QMRServiceReference.LoginResponse> LoginAsync(string username, string password)
 {
     WebApplication2.QMRServiceReference.LoginRequest inValue = new WebApplication2.QMRServiceReference.LoginRequest();
     inValue.Body          = new WebApplication2.QMRServiceReference.LoginRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     return(((WebApplication2.QMRServiceReference.qmrserviceSoap)(this)).LoginAsync(inValue));
 }
 public string Login(string username, string password)
 {
     WebApplication2.QMRServiceReference.LoginRequest inValue = new WebApplication2.QMRServiceReference.LoginRequest();
     inValue.Body          = new WebApplication2.QMRServiceReference.LoginRequestBody();
     inValue.Body.username = username;
     inValue.Body.password = password;
     WebApplication2.QMRServiceReference.LoginResponse retVal = ((WebApplication2.QMRServiceReference.qmrserviceSoap)(this)).Login(inValue);
     return(retVal.Body.LoginResult);
 }
 System.Threading.Tasks.Task <WebApplication2.QMRServiceReference.LoginResponse> WebApplication2.QMRServiceReference.qmrserviceSoap.LoginAsync(WebApplication2.QMRServiceReference.LoginRequest request)
 {
     return(base.Channel.LoginAsync(request));
 }
 WebApplication2.QMRServiceReference.LoginResponse WebApplication2.QMRServiceReference.qmrserviceSoap.Login(WebApplication2.QMRServiceReference.LoginRequest request)
 {
     return(base.Channel.Login(request));
 }