public static bool Update(ConfigScheduleEntity configScheduleEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ConfigScheduleProvider(zoneId);

            return(provider.Update(configScheduleEntity, trans));
        }
        public static List <ConfigScheduleEntity> GetAllForCache(string zoneId = "")
        {
            var provider = new ConfigScheduleProvider(zoneId);

            return(provider.GetAllForCache());
        }
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            ConfigScheduleProvider provider = new ConfigScheduleProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
        public static ConfigScheduleEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ConfigScheduleProvider(zoneId);

            return(provider.GetById(idx));
        }