예제 #1
0
 public string GetDTBAdmin()
 {
     return(BALServicesM.GetDTBAdmin());
 }
예제 #2
0
 public string InsertUser(string phone, string code, string token, string createdDate)
 {
     return(BALServicesM.InsertUser(phone, code, token, createdDate));
 }
예제 #3
0
 public string UpdateAdmin(int adminId, string username, string password)
 {
     return(BALServicesM.UpdateAdmin(adminId, username, password));
 }
예제 #4
0
 public string DeleteAdmin(int adminId, string username)
 {
     return(BALServicesM.DeleteAdmin(adminId, username));
 }
예제 #5
0
 public void UpdatePushNotificationToken(string phone, string token)
 {
     BALServicesM.UpdatePushNotificationToken(phone, token);
 }
예제 #6
0
 public string InsertAdmin(string username, string password)
 {
     return(BALServicesM.InsertAdmin(username, password));
 }
예제 #7
0
 public string GetDTBReportType()
 {
     return(BALServicesM.GetReportTypes());
 }
예제 #8
0
 public string GetDTBUser()
 {
     return(BALServicesM.GetDTBUser());
 }
예제 #9
0
 public string DeleteUser(int userId, string phone)
 {
     return(BALServicesM.DeleteUser(userId, phone));
 }
예제 #10
0
 public string UpdateUser(int userId, string phone, string code)
 {
     return(BALServicesM.UpdateUser(userId, phone, code));
 }
예제 #11
0
 public string UserLogin(string phone, string code)
 {
     return(BALServicesM.UserLogin(phone, code));
 }