public UserRepository(ToplearnDemoContext db, IMapper mapper, IWalletRepository walletRepo)
 {
     _db         = db;
     _mapper     = mapper;
     _walletRepo = walletRepo;
 }
 public WalletRepository(ToplearnDemoContext db)
 {
     _db = db;
 }