コード例 #1
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public muteAuthorityItem[] GetMuteAuthsByState(string state)
 {
     mc = new MuteAuthController();
     muteAuthorityItem[] result = mc.GetMuteAuthsByState(state);
     return result;
 }
コード例 #2
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public int SaveMuteAuth(muteAuthorityItem muteAuth)
 {
     mc = new MuteAuthController();
     int result = mc.SaveMuteAuth(muteAuth);
     return result;
 }
コード例 #3
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public muteAuthorityItem[] GetMuteAuthsByPin(string pin)
 {
     mc = new MuteAuthController();
     muteAuthorityItem[] result = mc.GetMuteAuthsByPin(pin);
     return result;
 }
コード例 #4
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public muteAuthorityItem[] GetMuteAuthsById(string id)
 {
     mc = new MuteAuthController();
     muteAuthorityItem[] result = mc.GetMuteAuthsById(id);
     return result;
 }
コード例 #5
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public muteAuthorityItem[] GetMuteAuthsByEmail(string email)
 {
     mc = new MuteAuthController();
     muteAuthorityItem[] result = mc.GetMuteAuthsByEmail(email);
     return result;
 }
コード例 #6
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public muteAuthorityItem[] GetMuteAuthsByCountry(string country)
 {
     mc = new MuteAuthController();
     muteAuthorityItem[] result = mc.GetMuteAuthsByCountry(country);
     return result;
 }
コード例 #7
0
ファイル: Core.svc.cs プロジェクト: harjoben/socialCopsDev
 public muteAuthorityItem[] GetMuteAuths()
 {
     mc = new MuteAuthController();
     muteAuthorityItem[] result = mc.GetMuteAuths();
     return result;
 }