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