public void SetUp()
 {
     _service    = MockRepository.GenerateStub <IResponseStatusService>();
     _controller = new PageNotFoundController(_service);
 }
 public PageNotFoundController(IResponseStatusService responseStatusService)
 {
     _responseStatusService = responseStatusService;
 }
 public void SetUp()
 {
     _service = MockRepository.GenerateStub<IResponseStatusService>();
     _controller = new PageNotFoundController(_service);
 }
示例#4
0
 public PageNotFoundController(IResponseStatusService responseStatusService)
 {
     _responseStatusService = responseStatusService;
 }