public CustomersController(
     ICustomerApiService customerApiService,
     IJsonFieldsSerializer jsonFieldsSerializer,
     IAclService aclService,
     ICustomerService customerService,
     IStoreMappingService storeMappingService,
     IStoreService storeService,
     IDiscountService discountService,
     ICustomerActivityService customerActivityService,
     ILocalizationService localizationService,
     ICustomerRolesHelper customerRolesHelper,
     IGenericAttributeService genericAttributeService,
     IEncryptionService encryptionService,
     IFactory <Customer> factory,
     ICountryService countryService,
     IMappingHelper mappingHelper,
     INewsLetterSubscriptionService newsLetterSubscriptionService,
     IPictureService pictureService, ILanguageService languageService) :
     base(jsonFieldsSerializer, aclService, customerService, storeMappingService, storeService, discountService, customerActivityService, localizationService, pictureService)
 {
     _customerApiService            = customerApiService;
     _factory                       = factory;
     _countryService                = countryService;
     _mappingHelper                 = mappingHelper;
     _newsLetterSubscriptionService = newsLetterSubscriptionService;
     _languageService               = languageService;
     _encryptionService             = encryptionService;
     _genericAttributeService       = genericAttributeService;
     _customerRolesHelper           = customerRolesHelper;
 }
예제 #2
0
 public ClientServices_Fake()
 {
     _clientRepo    = new CacheRepository <Client>();
     _mappingHelper = new MappingHelper();
 }
예제 #3
0
 public CaseServices()
 {
     _caseRepo = new BaseRepository <Case>(this.unitOfWork);
     //   _caseMappingRepo = new BaseRepository<CaseMapping>(this.unitOfWork);
     _mappingHelper = new MappingHelper();
 }
예제 #4
0
 public ClientServices()
 {
     _clientRepo    = new BaseRepository <Client>(this.unitOfWork);
     _mappingHelper = new MappingHelper();
 }
예제 #5
0
 public CaseAssignmentServices()
 {
     _caseAssignmentRepo = new BaseRepository <CaseAssignment>(this.unitOfWork);
     _mappingHelper      = new MappingHelper();
 }
예제 #6
0
 public StaffServices()
 {
     _staffRepo     = new BaseRepository <Staff>(this.unitOfWork);
     _mappingHelper = new MappingHelper();
 }
예제 #7
0
 public StaffGroupServices()
 {
     _StaffGroupRepo = new BaseRepository <StaffGroup>(this.unitOfWork);
     _mappingHelper  = new MappingHelper();
 }
예제 #8
0
 public ExamineHelper(IExamineManager examineManager, IMappingHelper mappingHelper)
 {
     _examineManager = examineManager;
     _mappingHelper = mappingHelper;
 public CaseMappingServices_Fake()
 {
     _caseMappingRepo = new CacheRepository <CaseMapping>();
     _mappingHelper   = new MappingHelper();
 }
예제 #10
0
 public StaffServices_Fake()
 {
     _staffRepo     = new CacheRepository <Staff>();
     _mappingHelper = new MappingHelper();
 }
예제 #11
0
 public EntryComponent(IEntryRepository entryRepository, IMappingHelper mappingHelper)
 {
     _entryRepository = entryRepository;
     _mappingHelper   = mappingHelper;
 }