Exemplo n.º 1
0
        public static bool Update(DicMallitemEntity dicMallitemEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new DicMallitemProvider(zoneId);

            return(provider.Update(dicMallitemEntity, trans));
        }
Exemplo n.º 2
0
        public static List <DicMallitemEntity> GetAllForCache(string zoneId = "")
        {
            var provider = new DicMallitemProvider(zoneId);

            return(provider.GetAllForCache());
        }
Exemplo n.º 3
0
        public static bool Delete(System.Int32 mallCode, DbTransaction trans = null, string zoneId = "")
        {
            DicMallitemProvider provider = new DicMallitemProvider(zoneId);

            return(provider.Delete(mallCode, trans));
        }
Exemplo n.º 4
0
        public static DicMallitemEntity GetById(System.Int32 mallCode, string zoneId = "")
        {
            var provider = new DicMallitemProvider(zoneId);

            return(provider.GetById(mallCode));
        }