zoukankan      html  css  js  c++  java
  • 接口多适用类(泛型)


        public class IC
        {
            public int Id { get; set; }
        }
        public class  test
        {
            public Bll bll=new Bll();
            public void YouMath()
            {
                var model = new IC();
                bll.Add(model);
            }

        }

        public class Bll : IBll
        {
            public void Delete(int id)
            {
                throw new NotImplementedException();
            }

            public void Add(IC model)
            {
                throw new NotImplementedException();
            }

            public void Update(IC model)
            {
                throw new NotImplementedException();
            }

            public void Get(int id)
            {
                throw new NotImplementedException();
            }

            public void GetModelsByPage(int currPage, int pageSize)
            {
                throw new NotImplementedException();
            }

            public void DoSomeThin()
            {
                throw new NotImplementedException();
            }
        }
        public interface IBll : IBaseBll<IC>
        {
            void DoSomeThin();
        }

        public interface IBaseBll<in T> where T : new()
        {
            void Delete(int id);
            void Add(T model);
            void Update(T model);
            void Get(int id);
            void GetModelsByPage(int currPage, int pageSize);
        }

  • 相关阅读:
    针式PKM软件进入华军分类下载月排名前6名
    读取xml
    一个简单的记事本程序
    python输出重定向
    重看ATL布幔之下的秘密
    nginx学习(二)动态加载各模块
    ngx_queue的理解
    nginx学习(三)IOCP的使用
    nginx学习(一)内存
    使用python实现一个通用协议测试工具
  • 原文地址:https://www.cnblogs.com/change4now/p/4856657.html
Copyright © 2011-2022 走看看