Exemple #1
0
        public static bool Update(CrosscrowdManagerhistoryEntity crosscrowdManagerhistoryEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new CrosscrowdManagerhistoryProvider(zoneId);

            return(provider.Update(crosscrowdManagerhistoryEntity, trans));
        }
Exemple #2
0
        public static List <CrosscrowdManagerhistoryEntity> GetAll(string zoneId = "")
        {
            var provider = new CrosscrowdManagerhistoryProvider(zoneId);

            return(provider.GetAll());
        }
Exemple #3
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            CrosscrowdManagerhistoryProvider provider = new CrosscrowdManagerhistoryProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Exemple #4
0
        public static CrosscrowdManagerhistoryEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new CrosscrowdManagerhistoryProvider(zoneId);

            return(provider.GetById(idx));
        }