public UnitOfWork()
 {
     _context = new EntityContext();
 }
 public EmployeeRepository(EntityContext context)
 {
     this._context = context;
 }