package wallet import ( "context" "github.com/SamuelTariku/FortuneBet-Backend/internal/domain" ) type Service struct { walletStore WalletStore } func NewService(walletStore WalletStore) *Service { return &Service{ walletStore: walletStore, } } func (s *Service) CreateWallet(ctx context.Context, wallet domain.CreateWallet) (domain.Wallet, error) { return s.walletStore.CreateWallet(ctx, wallet) } func (s *Service) CreateCustomerWallet(ctx context.Context, customerWallet domain.CreateCustomerWallet) (domain.CustomerWallet, error) { return s.walletStore.CreateCustomerWallet(ctx, customerWallet) } func (s *Service) GetWalletByID(ctx context.Context, id int64) (domain.Wallet, error) { return s.walletStore.GetWalletByID(ctx, id) } func (s *Service) GetAllWallets(ctx context.Context) ([]domain.Wallet, error) { return s.walletStore.GetAllWallets(ctx) } func (s *Service) GetCustomerWallet(ctx context.Context, customerID int64, companyID int64) (domain.GetCustomerWallet, error) { return s.walletStore.GetCustomerWallet(ctx, customerID, companyID) } func (s *Service) UpdateBalance(ctx context.Context, id int64, balance domain.Currency) error { return s.walletStore.UpdateBalance(ctx, id, balance) } func (s *Service) UpdateWalletActive(ctx context.Context, id int64, isActive bool) error { return s.walletStore.UpdateWalletActive(ctx, id, isActive) }