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

            return(provider.Update(dicNamesuffixEntity, trans));
        }
Exemplo n.º 2
0
        public static List <DicNamesuffixEntity> GetAll(string zoneId = "")
        {
            var provider = new DicNamesuffixProvider(zoneId);

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

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

            return(provider.GetById(idx));
        }