Exemplo n.º 1
0
        public override void OncePerTest()
        {
            this.mockConceptRepository = new Mock<IConceptRepository>();
            this.mockTagRepository = new Mock<ITagRepository>();

            this.sut = new ConceptsService(
                this.mockConceptRepository.Object,
                this.mockTagRepository.Object);
        }
Exemplo n.º 2
0
 public ConceptLogic(IConceptsService conceptsService)
 {
     this.conceptsService = conceptsService;
 }