Ejemplo n.º 1
0
 public bool UserAuth(string username, string password, ref int id, ref string propic, ref string firstname, ref string lastname)
 {
     LookForCars.L4C.UserAuthRequest inValue = new LookForCars.L4C.UserAuthRequest();
     inValue.username  = username;
     inValue.password  = password;
     inValue.id        = id;
     inValue.propic    = propic;
     inValue.firstname = firstname;
     inValue.lastname  = lastname;
     LookForCars.L4C.UserAuthResponse retVal = ((LookForCars.L4C.ILookForCarsService)(this)).UserAuth(inValue);
     id        = retVal.id;
     propic    = retVal.propic;
     firstname = retVal.firstname;
     lastname  = retVal.lastname;
     return(retVal.UserAuthResult);
 }
Ejemplo n.º 2
0
 public System.Threading.Tasks.Task <LookForCars.L4C.UserAuthResponse> UserAuthAsync(LookForCars.L4C.UserAuthRequest request)
 {
     return(base.Channel.UserAuthAsync(request));
 }
Ejemplo n.º 3
0
 LookForCars.L4C.UserAuthResponse LookForCars.L4C.ILookForCarsService.UserAuth(LookForCars.L4C.UserAuthRequest request)
 {
     return(base.Channel.UserAuth(request));
 }