Exemple #1
0
 public BandManagementService(IBandServiceRepository bandServiceRepository)
 {
     _bandServiceRepository = bandServiceRepository;
 }
Exemple #2
0
 public AccountManagementService(IAccountServiceRepository accountServiceRepository, IBandServiceRepository bandServiceRepository)
 {
     _accountServiceRepository = accountServiceRepository;
     _bandServiceRepository    = bandServiceRepository;
 }