public void SetUp()
        {
            _repository = Mock.Of<IMetadataRepository>();

            _sender = Mock.Of<IHttpNotificationSender>();
        }
        public void SetUp()
        {
            _repository = Mock.Of <IMetadataRepository>();

            _sender = Mock.Of <IHttpNotificationSender>();
        }
Esempio n. 3
0
 public PostNotificationSender(IHttpNotificationSender httpNotificationSender, IMetadataRepository repository)
 {
     _httpNotificationSender = httpNotificationSender;
     _repository             = repository;
 }
 public PostNotificationSender(IHttpNotificationSender httpNotificationSender, IMetadataRepository repository)
 {
     _httpNotificationSender = httpNotificationSender;
     _repository = repository;
 }