zoukankan      html  css  js  c++  java
  • bll调用方法

    using Model;

    using Model.DTO;

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    using System.Threading.Tasks;

    namespace BLL

    {

        public class ManagerBLL : BaseBLL<Commodity>

        {

            static string typeName = "AccressDAL";

            private IDAL.idals<Commodity> ids;

            public ManagerBLL() : base(typeName)

            {

                ids = base.t;

            }

            public int Delete(string id)

            {

                return ids.Delete(id);

            }

            public int Dels(int id)

            {

                return ids.Dels(id);

            }

            public PageList<Commodity> FyShowlist(ParaModel model)

            {

                return ids.FyShowlist(model);

            }

            public int Adection(Commodity asd)

            {

                return ids.Adection(asd);

            }

            public List<Housepe> Hshow()

            {

                return ids.Hshow();

            }

            public List<Ridgepole> Rshow()

            {

                return ids.Rshow();

            }

            public List<States> Sshow()

            {

                return ids.Sshow();

            }

            public List<Housing> Xshow()

            {

                return ids.Xshow();

            }

        }

    }

  • 相关阅读:
    GO语言网络编程
    GO语言测试
    GO语言反射
    GO语言strconv包的使用
    GO语言并发
    Centos7 开启swap分区
    设计模式 之 命令模式
    设计模式 之 代理模式
    设计模式 之 工厂模式
    设计模式 之 观察者模式
  • 原文地址:https://www.cnblogs.com/lockzy/p/9520352.html
Copyright © 2011-2022 走看看