public AddContactBusiness(
     IContactRepository contactRepository,
     IGetContactBusiness getContactBusiness,
     IAddChatBusiness addChatBusiness
     )
 {
     _contactRepository  = contactRepository;
     _getContactBusiness = getContactBusiness;
     _addChatBusiness    = addChatBusiness;
 }
예제 #2
0
        public AddContactCommandHandler(
            IContactRepository contactRepository,
            IAddContactBusiness addContactBusiness,
            IDeleteContactNotificationBusiness deleteContactNotificationBusiness,
            IAddChatBusiness addChatBusiness
            )

        {
            _deleteContactNotificationBusiness = deleteContactNotificationBusiness;

            _contactRepository = contactRepository;

            _addContactBusiness = addContactBusiness;

            _addChatBusiness = addChatBusiness;
        }