public CondicaoPagamentoService ObterService()
        {
            Mocker = new AutoMocker();
            CondicaoPagamentoService = Mocker.CreateInstance <CondicaoPagamentoService>();

            return(CondicaoPagamentoService);
        }
 public CondicaoPagamentoServiceTests(CondicaoPagamentoTestsAutoMockerFixture condicaoPagamentoTestsFixture)
 {
     _condicaoPagamentoTestsAutoMockerFixture = condicaoPagamentoTestsFixture;
     _condicaoPagamentoService = _condicaoPagamentoTestsAutoMockerFixture.ObterService();
 }
 public CondicaoPagamentoController(CondicaoPagamentoDAO dAO, CondicaoPagamentoService condicaoPagamentoService) : base(dAO)
 {
     this.CondicaoPagamentoService = condicaoPagamentoService;
 }