Ejemplo n.º 1
0
 public bool Logon(string user, string password, ref int userID)
 {
     MultiColumnList.RentalService.LogonRequest inValue = new MultiColumnList.RentalService.LogonRequest();
     inValue.user     = user;
     inValue.password = password;
     inValue.userID   = userID;
     MultiColumnList.RentalService.LogonResponse retVal = ((MultiColumnList.RentalService.IRentalService)(this)).Logon(inValue);
     userID = retVal.userID;
     return(retVal.LogonResult);
 }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task <MultiColumnList.RentalService.LogonResponse> LogonAsync(MultiColumnList.RentalService.LogonRequest request)
 {
     return(base.Channel.LogonAsync(request));
 }
Ejemplo n.º 3
0
 MultiColumnList.RentalService.LogonResponse MultiColumnList.RentalService.IRentalService.Logon(MultiColumnList.RentalService.LogonRequest request)
 {
     return(base.Channel.Logon(request));
 }