Exemple #1
0
        public EtlValueTranslation(EtlValueFunction func0, EtlValueFunction func1, EtlValueFunction func2)
        {
            if (func0 != null)
            {
                this.Functions.Add(func0);
            }

            if (func1 != null)
            {
                this.Functions.Add(func1);
            }

            if (func2 != null)
            {
                this.Functions.Add(func2);
            }
        }
Exemple #2
0
 public EtlValueTranslation(EtlValueFunction func0, EtlValueFunction func1)
     : this(func0, func1, null)
 {
 }
Exemple #3
0
 public EtlValueTranslation(EtlValueFunction func)
     : this(func, null, null)
 {
 }