//public  UsersRepository { get; set; }
 public UnitOfWork(TrocaBolasContext context)
 {
     this._context = context;
 }
 public UnitOfWork()
 {
     _context = new TrocaBolasContext();
 }
 public SqlUserRepository()
 {
     _context = new TrocaBolasContext();
 }