public static bool Update(ActivityexCountrecordEntity activityexCountrecordEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ActivityexCountrecordProvider(zoneId);

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

            return(provider.Delete(idx, trans));
        }
        public static List <ActivityexCountrecordEntity> GetAll(string zoneId = "")
        {
            var provider = new ActivityexCountrecordProvider(zoneId);

            return(provider.GetAll());
        }
        public static List <ActivityexCountrecordEntity> GetByManagerList(System.Guid managerId, System.Int32 zoneActivityId, string zoneId = "")
        {
            var provider = new ActivityexCountrecordProvider(zoneId);

            return(provider.GetByManagerList(managerId, zoneActivityId));
        }
        public static ActivityexCountrecordEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ActivityexCountrecordProvider(zoneId);

            return(provider.GetById(idx));
        }