Example #1
0
 public ContactFacade(IContactService ContactService, IContactTranslationService typeTranslationService)
 {
     _ContactService         = ContactService;
     _typeTranslationService = typeTranslationService;
 }
Example #2
0
 public ContactFacade(IContactService ContactService, IUnitOfWorkAsync unitOfWork, IContactTranslationService typeTranslationService) : base(unitOfWork)
 {
     _ContactService         = ContactService;
     _typeTranslationService = typeTranslationService;
 }