예제 #1
0
 public bool Login(string username, string password)
 {
     using (PersonServiceClient proxy = new PersonServiceClient())
     {
         bool verified = proxy.LogOn(username, password);
         return(verified);
     }
 }