Beispiel #1
0
 public ContactServiceVerifier(
     IContactServiceRepository contactServiceRepository,
     IContactServiceErrorCode contactServiceErrorCode)
 {
     this.contactServiceRepository = contactServiceRepository;
     this.contactServiceErrorCode  = contactServiceErrorCode;
 }
Beispiel #2
0
 public ContactServiceProcessor(
     IContactServiceRepository contactServiceRepository,
     IContactServiceMapper contactServiceMapper,
     IContactServiceErrorCode contactServiceErrorCode)
 {
     this.contactServiceRepository = contactServiceRepository;
     this.contactServiceMapper     = contactServiceMapper;
     this.contactServiceErrorCode  = contactServiceErrorCode;
 }
Beispiel #3
0
 public ContactsController(
     IContactService contactService,
     IContactServiceControllerMapper contactServiceControllerMapper,
     IContactServiceErrorCode contactServiceErrorCode)
 {
     this.contactService = contactService;
     this.contactServiceControllerMapper = contactServiceControllerMapper;
     this.contactServiceErrorCode        = contactServiceErrorCode;
 }
 public ContactServiceValidation(IContactServiceErrorCode contactServiceErrorCode)
 {
     this.contactServiceErrorCode = contactServiceErrorCode;
 }