Esempio n. 1
0
 public bool SaveSubscription(subscriptionItem subscription)
 {
     uc = new UserController();
     bool result = uc.SaveSubscription(subscription);
     return result;
 }
Esempio n. 2
0
 public userItem[] GetUsersByState(string state)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByState(state);
     return result;
 }
Esempio n. 3
0
 public bool SaveProfilePic(int id, string url)
 {
     uc = new UserController();
     bool result = uc.SaveProfilePic(id, url);
     return result;
 }
Esempio n. 4
0
 public userItem[] GetUsersByPoints(string points)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByPoints(points);
     return result;
 }
Esempio n. 5
0
 public userItem[] GetUsersByRank(string rank)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByRank(rank);
     return result;
 }
Esempio n. 6
0
 public likeItem[] GetLikesByUserId(string userId)
 {
     uc = new UserController();
     likeItem[] result = uc.GetLikesByUserId(userId);
     return result;
 }
Esempio n. 7
0
 public userItem[] GetUsersByPin(string pin)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByPin(pin);
     return result;
 }
Esempio n. 8
0
 public userItem[] GetUsersByComplaints(string num)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByComplaints(num);
     return result;
 }
Esempio n. 9
0
 public userItem[] GetUsersByCountry(string country)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByCountry(country);
     return result;
 }
Esempio n. 10
0
 public userItem GetUserById(string id)
 {
     uc = new UserController();
     userItem result = uc.GetUserById(id);
     return result;
 }
Esempio n. 11
0
 public userItem[] GetUsers()
 {
     uc = new UserController();
     userItem[] result = uc.GetUsers();
     return result;
 }
Esempio n. 12
0
 public userItem GetUserByEmail(string email)
 {
     uc = new UserController();
     userItem result = uc.GetUserByEmail(email);
     return result;
 }
Esempio n. 13
0
 public userItem[] GetSubscribers(string id)
 {
     uc = new UserController();
     userItem[] result = uc.GetSubscribers(id);
     return result;
 }
Esempio n. 14
0
 public spamItem[] GetSpamByUserId(string userId)
 {
     uc = new UserController();
     spamItem[] result = uc.GetSpamByUserId(userId);
     return result;
 }
Esempio n. 15
0
 public int SaveUser(userItem user)
 {
     uc = new UserController();
     int result = uc.SaveUser(user);
     return result;
 }
Esempio n. 16
0
 public userItem[] GetUsersByName(string name)
 {
     uc = new UserController();
     userItem[] result = uc.GetUsersByName(name);
     return result;
 }
Esempio n. 17
0
 public int ThirdPartyLogin(userItem user)
 {
     uc = new UserController();
     int result = uc.thirdPartyLogin(user);
     return result;
 }
Esempio n. 18
0
 public complaintItem[] GetComplaintsByUserId(string userId)
 {
     uc = new UserController();
     complaintItem[] result = uc.GetComplaintsByUserId(userId);
     return result;
 }