Ejemplo n.º 1
0
        public static bool Update(ActivityHistoryEntity activityHistoryEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new ActivityHistoryProvider(zoneId);

            return(provider.Update(activityHistoryEntity, trans));
        }
Ejemplo n.º 2
0
        public static List <ActivityHistoryEntity> GetAll(string zoneId = "")
        {
            var provider = new ActivityHistoryProvider(zoneId);

            return(provider.GetAll());
        }
Ejemplo n.º 3
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            ActivityHistoryProvider provider = new ActivityHistoryProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Ejemplo n.º 4
0
        public static ActivityHistoryEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new ActivityHistoryProvider(zoneId);

            return(provider.GetById(idx));
        }