示例#1
0
 public bool UpdateProfile(Profile profile)
 {
     WorkerClass worker = new WorkerClass();
     return worker.UpdateProfile(profile);
 }
示例#2
0
 public bool LoadDatingProfile(DatingProfile dprofile)
 {
     WorkerClass worker = new WorkerClass();
     return worker.LoadDatingProfile(dprofile);
 }
示例#3
0
 public int GetNumberOfActiveUsers()
 {
     WorkerClass worker = new WorkerClass();
     return worker.NumberOfActiveUsers();
 }
示例#4
0
 public List<MatchedResults> FindMatches(string username, double longitude, double latitude)
 {
     WorkerClass worker = new WorkerClass();
     return worker.FindMatches(username,longitude, latitude);
 }
示例#5
0
 public bool EndSession(Profile profile)
 {
     WorkerClass worker = new WorkerClass();
     return worker.EndSession(profile);
 }
示例#6
0
 public bool DeletedatingProfile(DatingProfile dprofile)
 {
     WorkerClass worker = new WorkerClass();
     return worker.DeletedateingProfile(dprofile);
 }