public void Transaction_Test()
        {
            var factory = new AdoNetFactory();

            var uow = new ADOUnitOfWork(factory);

            var turmaRepository = new TurmaRepositorySql(factory);
        }
Ejemplo n.º 2
0
        public void Transaction_Test()
        {
            var factory = new AdoNetFactory();

            var uow = new ADOUnitOfWork(factory);

            var turmaRepository = new TurmaRepositorySql(factory);
        }
Ejemplo n.º 3
0
 public AlunoService(AlunoRepositorySql alunoRepository, TurmaRepositorySql turmaRepository)
 {
     this.alunoRepository = alunoRepository;
     this.turmaRepository = turmaRepository;
 }
Ejemplo n.º 4
0
 public TurmaService(TurmaRepositorySql turmaRepository)
 {
     this.turmaRepository = turmaRepository;
 }
Ejemplo n.º 5
0
 public AlunoService(AlunoRepositorySql alunoRepository, TurmaRepositorySql turmaRepository)
 {
     this.alunoRepository = alunoRepository;
     this.turmaRepository = turmaRepository;
 }
Ejemplo n.º 6
0
 public TurmaService(TurmaRepositorySql turmaRepository)
 {
     this.turmaRepository = turmaRepository;
 }