public System.Threading.Tasks.Task <BoatManagement.ServiceLogin.CheckLoginResponse> CheckLoginAsync(string account, string password)
 {
     BoatManagement.ServiceLogin.CheckLoginRequest inValue = new BoatManagement.ServiceLogin.CheckLoginRequest();
     inValue.Body          = new BoatManagement.ServiceLogin.CheckLoginRequestBody();
     inValue.Body.account  = account;
     inValue.Body.password = password;
     return(((BoatManagement.ServiceLogin.LoginSoap)(this)).CheckLoginAsync(inValue));
 }
 public bool CheckLogin(string account, string password)
 {
     BoatManagement.ServiceLogin.CheckLoginRequest inValue = new BoatManagement.ServiceLogin.CheckLoginRequest();
     inValue.Body          = new BoatManagement.ServiceLogin.CheckLoginRequestBody();
     inValue.Body.account  = account;
     inValue.Body.password = password;
     BoatManagement.ServiceLogin.CheckLoginResponse retVal = ((BoatManagement.ServiceLogin.LoginSoap)(this)).CheckLogin(inValue);
     return(retVal.Body.CheckLoginResult);
 }
 System.Threading.Tasks.Task <BoatManagement.ServiceLogin.CheckLoginResponse> BoatManagement.ServiceLogin.LoginSoap.CheckLoginAsync(BoatManagement.ServiceLogin.CheckLoginRequest request)
 {
     return(base.Channel.CheckLoginAsync(request));
 }
 BoatManagement.ServiceLogin.CheckLoginResponse BoatManagement.ServiceLogin.LoginSoap.CheckLogin(BoatManagement.ServiceLogin.CheckLoginRequest request)
 {
     return(base.Channel.CheckLogin(request));
 }