Esempio n. 1
0
        public Int32 AddCodeSet(string Code, string ShortValue, string LongValue, DateTime EffectiveFromDate, DateTime EffectiveToDate, string CategoryCode)
        {
            Int32          Result         = 0;
            CodeSetManager CodeSetManager = new CodeSetManager();

            Result = CodeSetManager.AddCodeSet(Code, ShortValue, LongValue, EffectiveFromDate, EffectiveToDate, CategoryCode);
            return(Result);
        }