package stats import "github.com/SamuelTariku/FortuneBet-Backend/internal/ports" type Service struct { companyStatStore ports.CompanyStatStore branchStatStore ports.BranchStatStore eventStatStore ports.EventStatStore betStatStore ports.BetStatStore walletStatStore ports.WalletStatStore } func NewService( companyStatStore ports.CompanyStatStore, branchStatStore ports.BranchStatStore, eventStatStore ports.EventStatStore, betStatStore ports.BetStatStore, walletStatStore ports.WalletStatStore, ) *Service { return &Service{ companyStatStore: companyStatStore, branchStatStore: branchStatStore, eventStatStore: eventStatStore, betStatStore: betStatStore, walletStatStore: walletStatStore, } }