Пример #1
0
        public static List <AllLogfunctionEntity> GetAllForFactory()
        {
            var provider = new AllLogfunctionProvider();

            return(provider.GetAllForFactory());
        }
Пример #2
0
        public static AllLogfunctionEntity AddNewForFactory(System.String name, System.DateTime rowTime)
        {
            var provider = new AllLogfunctionProvider();

            return(provider.AddNewForFactory(name, rowTime));
        }
Пример #3
0
        public static bool Update(AllLogfunctionEntity allLogfunctionEntity, DbTransaction trans = null, string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.Update(allLogfunctionEntity, trans));
        }
Пример #4
0
        public static bool Delete(System.Int32 idx, DbTransaction trans = null, string zoneId = "")
        {
            AllLogfunctionProvider provider = new AllLogfunctionProvider(zoneId);

            return(provider.Delete(idx, trans));
        }
Пример #5
0
        public static List <AllLogfunctionEntity> GetAll(string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.GetAll());
        }
Пример #6
0
        public static AllLogfunctionEntity AddNew(System.String name, System.DateTime rowTime, string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.AddNew(name, rowTime));
        }
Пример #7
0
        public static AllLogfunctionEntity GetById(System.Int32 idx, string zoneId = "")
        {
            var provider = new AllLogfunctionProvider(zoneId);

            return(provider.GetById(idx));
        }