public bool UpdateProfile(Profile profile) { WorkerClass worker = new WorkerClass(); return worker.UpdateProfile(profile); }
public bool LoadDatingProfile(DatingProfile dprofile) { WorkerClass worker = new WorkerClass(); return worker.LoadDatingProfile(dprofile); }
public int GetNumberOfActiveUsers() { WorkerClass worker = new WorkerClass(); return worker.NumberOfActiveUsers(); }
public List<MatchedResults> FindMatches(string username, double longitude, double latitude) { WorkerClass worker = new WorkerClass(); return worker.FindMatches(username,longitude, latitude); }
public bool EndSession(Profile profile) { WorkerClass worker = new WorkerClass(); return worker.EndSession(profile); }
public bool DeletedatingProfile(DatingProfile dprofile) { WorkerClass worker = new WorkerClass(); return worker.DeletedateingProfile(dprofile); }