Esempio n. 1
0
        public static List <AllLogfunctionEntity> GetAllForFactory()
        {
            var provider = new AllLogfunctionProvider();

            return(provider.GetAllForFactory());
        }
Esempio n. 2
0
        public static AllLogfunctionEntity AddNewForFactory(System.String name, System.DateTime rowTime)
        {
            var provider = new AllLogfunctionProvider();

            return(provider.AddNewForFactory(name, rowTime));
        }
Esempio n. 3
0
        public static bool Update(AllLogfunctionEntity allLogfunctionEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.Update(allLogfunctionEntity, trans));
        }
Esempio n. 4
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            AllLogfunctionProvider provider = new AllLogfunctionProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Esempio n. 5
0
        public static List <AllLogfunctionEntity> GetAll(string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.GetAll());
        }
Esempio n. 6
0
        public static AllLogfunctionEntity AddNew(System.String name, System.DateTime rowTime, string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.AddNew(name, rowTime));
        }
Esempio n. 7
0
        public static AllLogfunctionEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.GetById(idx));
        }