Пример #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);
 }