Esempio n. 1
0
 public CustomerManagementStorageApiClient(ICustomerInfoMapper customerInfoMapper, IApplicationSettingsService applicationSettingsService)
 {
     _customerInfoMapper = customerInfoMapper;
     _account            = CloudStorageAccount.Parse(applicationSettingsService.AzureStorageAccountConnection);
 }
 public CustomerController(ICustomerRepository repository, ICustomerInfoMapper mapper)
 {
     _repository = repository;
     _mapper = mapper;
 }