예제 #1
0
파일: Holiday.cs 프로젝트: CoolWirya/BS
        public bool Delete(bool isWeb = false)
        {
            HolidayTable AT = new HolidayTable();

            AT.SetValueProperty(this);
            return(AT.Delete());
        }
예제 #2
0
파일: Holiday.cs 프로젝트: CoolWirya/BS
        public int Insert(bool isWeb = false)
        {
            HolidayTable AT = new HolidayTable();

            AT.SetValueProperty(this);
            Code = AT.Insert(0, null, true);
            return(Code);
        }