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