Esempio n. 1
0
 public GenericEntityRepository_RW(IEntityContextBase context)
     : base(context)
 {
 }
 /// <summary>
 /// Entity Constructor
 /// </summary>
 /// <param name="context"></param>
 public GenericEntityRepository_RO(IEntityContextBase context)
 {
     this._context = context;
     this._dbset   = this._context.Set <T>();
 }