zoukankan      html  css  js  c++  java
  • 两种实现模式,还是选择2,少一层继承。

     public class Model
        {
     
        }
     
     
        public interface IRepository<TEntity>
        {
            /// <summary>
            /// Gets entity by key.
            /// </summary>
            /// <typeparam name="TEntity">The type of the entity.</typeparam>
            /// <param name="keyValue">The key value.</param>
            /// <returns></returns>
            TEntity GetByKey(object keyValue);
        }
     
        public interface IRepository
        {
            /// <summary>
            /// Gets entity by key.
            /// </summary>
            /// <typeparam name="TEntity">The type of the entity.</typeparam>
            /// <param name="keyValue">The key value.</param>
            /// <returns></returns>
            TEntity GetByKey<TEntity>(object keyValue) where TEntity : class;
        }
     
     
        public class BaseRepository   : IRepository 
        {
     
            public TEntity GetByKey<TEntity>(object keyValue) where TEntity : class
            {
                throw new NotImplementedException();
            }
        }
     
        public class BaseRepository<T> : BaseRepository, IRepository<T> where T : class
        {
     
            public T GetByKey(object keyValue)
            {
                return this.GetByKey<T>(keyValue);
            }
        }
     
        public class BaseRepository2<T> : IRepository, IRepository<T> where T : class
        {
     
            public T GetByKey(object keyValue)
            {
                return this.GetByKey<T>(keyValue);
            }
     
            public TEntity GetByKey<TEntity>(object keyValue) where TEntity : class
            {
                throw new NotImplementedException();
            }
        }
     
     
     
     
     
        public interface IBiz
        {
            void Get();
        }
     
        class bbb : BaseRepository<Object>, IBiz
        {
     
            public void Get()
            {
                this.GetByKey(1);
                this.GetByKey<Model>(1);
            }
        }
     
  • 相关阅读:
    Windows平台下的读写锁
    进程的阻塞和挂起的区别
    事件函数SetEvent、PulseEvent与WaitForSingleObject详解
    多线程的那点儿事(之多线程调试)
    多线程同步内功心法——PV操作上(未完待续。。。)
    读者写者问题(有bug 后续更改)
    解决VS2010控制台程序运行结束不显示请按任意键继续
    Method has too many Body parameters openfeign
    Eclipse中Cannot nest src folder解决方法
    restTemplate重定向问题 &cookie问题
  • 原文地址:https://www.cnblogs.com/zbw911/p/2882634.html
Copyright © 2011-2022 走看看