Esempio n. 1
0
        public static string GetSubmissionIdentType(IdentTypes type)
        {
            switch (type)
            {
            case IdentTypes.NotIdentity:
                return("000");

            case IdentTypes.TechnicalIdentity:
                return("100");

            case IdentTypes.ManualIdentity:
                return("200");

            case IdentTypes.ManualIdentityResubmission:
                return("201");
            }

            return(null);
        }
Esempio n. 2
0
        public static string IdentTypeToElbaString(IdentTypes type)
        {
            switch (type)
            {
            case IdentTypes.NotIdentity:
                return("000");

            case IdentTypes.TechnicalIdentity:
                return("100");

            case IdentTypes.ManualIdentity:
                return("200");

            case IdentTypes.ManualIdentityResubmission:
                return("201");
            }

            return(string.Empty);
        }
Esempio n. 3
0
 public Method(string name, IdentTypes identType, ParamList paramList) :
     base(name, IdentUses.METHODS, identType)
 {
     ParamList = paramList;
 }
Esempio n. 4
0
 public Const(string name, IdentTypes identType, object value) : base(name, IdentUses.CONSTS, identType)
 {
     Value = value;
 }
Esempio n. 5
0
 public Identifier(string name, IdentUses identUse, IdentTypes identType)
 {
     Name      = name;
     IdentUse  = identUse;
     IdentType = identType;
 }
Esempio n. 6
0
 public Variable(string name, IdentUses identUse, IdentTypes identType, object value) : base(name, IdentUses.VARS, identType)
 {
     Value = value;
 }