Пример #1
0
 public SaveExOzStateCommandHandler(IExOzStateRepository exOzStateRepository, IStateRepository stateRepository,
                                    IExOzCountryRepository exOzCountryRepository, ICountryRepository countryRepository, IMediator mediator)
     : base(mediator)
 {
     _exOzCountryRepository = exOzCountryRepository;
     _countryRepository     = countryRepository;
     _exOzStateRepository   = exOzStateRepository;
     _stateRepository       = stateRepository;
 }
Пример #2
0
 public ExOzCountryController(IExOzCountryRepository exOzCountryRepository)
 {
     _exOzCountryRepository = exOzCountryRepository;
 }
Пример #3
0
 public SaveExOzCountryCommandHandler(IExOzCountryRepository exOzCountryRepository, ICountryRepository countryRepository, IMediator mediator)
     : base(mediator)
 {
     _exOzCountryRepository = exOzCountryRepository;
     _countryRepository     = countryRepository;
 }