Exemplo n.º 1
0
        //public Repository()
        //{
        //    this._context = new EmployeeEntity();
        //    table = _context.Set<T>();
        //}

        public Repository(EmployeeEntity _context)
        {
            this._context = _context;
            table         = _context.Set <T>();
        }