Exemple #1
0
 internal void ConvertMethodCodeToMethodName()
 {
     if (string.IsNullOrEmpty(MethodCode))
     {
         return;
     }
     if (string.IsNullOrEmpty(MethodName))
     {
         // Convert MethodCode To MethodName(since 1.6.0)
         MethodName = Option.FindLabel(Options.SamplingMethods, MethodCode);
     }
     MethodCode = null;
 }
Exemple #2
0
 public static string FindRoleNameDaihyoSha()
 {
     return(Option.FindLabel(Options.Roles, Options.ROLE_DAIHYOSHA_CODE));
 }
Exemple #3
0
 public static string FindRoleName(string roleCode)
 {
     return(Option.FindLabel(Options.Roles, roleCode));
 }