public Repository(UnitOfData DbContext)
     : base(DbContext)
 {
 }
 protected RepositoryBase(UnitOfData DbContext)
 {
     this._fDataContext = DbContext;
     this.dbset         = this.DataContext.Set <T>();
 }