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