Exemplo n.º 1
0
 public CampaignSyncService(ICompanyRepository companyRepository, MyConfiguration configuration, ICampaignRepository campaignRepository, ICustomExceptionService customExceptionService)
 {
     this._companyRepository  = companyRepository;
     this._settings           = configuration.settings;
     this._campaignRepository = campaignRepository;
     _customExceptionService  = customExceptionService;
 }
Exemplo n.º 2
0
 public CustomerService(ICustomerRepository customerRepository)
 {
     _customerRepository     = customerRepository;
     _customExceptionService = new CustomExceptionService();
 }