Exemplo n.º 1
0
 public SeccionService()
 {
     if (_seccionRepository == null)
     {
         _seccionRepository = new SeccionRepository();
     }
 }
 public EmpleadoService()
 {
     empleadoRepository = new EmpleadoRepository();
     seccionRepository  = new SeccionRepository();
 }
Exemplo n.º 3
0
 public SeccionService(ISeccionRepository _SeccionRepository)
 {
     this.SeccionRepository = _SeccionRepository;
 }