コード例 #1
0
 public GetContactNotificationBusiness(IContactNotificationRepository contactNotificationRepository)
 {
     _contactNotificationRepository = contactNotificationRepository;
 }
        public DeleteContactNotificationBusiness(IContactNotificationRepository contactNotificationRepository, IGetContactNotificationBusiness getContactNotificationBusiness)
        {
            _contactNotificationRepository = contactNotificationRepository;

            _getContactNotificationBusiness = getContactNotificationBusiness;
        }
コード例 #3
0
        public AddContactNotificationCommandHandler(IAddContactNotificationBusiness addContactNotificationBusiness, IContactNotificationRepository contactNotificationRepository)
        {
            _addContactNotificationBusiness = addContactNotificationBusiness;

            _contactNotificationRepository = contactNotificationRepository;
        }
        public DeleteContactNotificationCommandHandler(IDeleteContactNotificationBusiness deleteContactNotificationBusiness, IContactNotificationRepository repository)
        {
            _deleteContactNotificationBusiness = deleteContactNotificationBusiness;

            _repository = repository;
        }