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();

            }

        }

    }

  • 相关阅读:
    LIPS的历史
    语法分析生成器 LEX
    Effective JAVA 中有关Exception的几条建议
    Code Reading chap10
    Code Reading chap8
    Code Reading chap7
    Code Reading chap11
    Code Reading chap9
    软件设计中的抽象层次
    Invalid bound statement (not found) @Update注解写的怎么还报错!
  • 原文地址:https://www.cnblogs.com/lockzy/p/9520352.html
Copyright © 2011-2022 走看看