Example #1
0
 public AccountServicio()
 {
     _context = new PMMXContext();
 }
Example #2
0
 public DesperdicioServicio()
 {
     _context = new PMMXContext();
 }
Example #3
0
 public AccountServicio(PMMXContext context)
 {
     _context = context;
 }
 public VolumenDeProduccionServicio()
 {
     _context = new PMMXContext();
 }
Example #5
0
 public DesperdicioServicio(PMMXContext context)
 {
     _context = context;
 }
Example #6
0
 public DefectoServicio()
 {
     _context = new PMMXContext();
 }
 public VolumenDeProduccionServicio(PMMXContext context)
 {
     _context = context;
 }
Example #8
0
 public WorkCenterServicio()
 {
     _context = new PMMXContext();
 }
Example #9
0
 public DefectoServicio(PMMXContext context)
 {
     _context = context;
 }
 public WorkCenterServicioTests()
 {
     _context  = new PMMXContext();
     _servicio = new WorkCenterServicio(_context);
 }
Example #11
0
 public WorkCenterServicio(PMMXContext context)
 {
     _context = context;
 }
Example #12
0
 public ParoServicio()
 {
     _context = new PMMXContext();
 }
Example #13
0
 public ParoServicio(PMMXContext context)
 {
     _context = context;
 }
Example #14
0
 public ProfileController()
 {
     _context = new PMMXContext();
 }
Example #15
0
 public MarcaServicioTests()
 {
     _context  = new PMMXContext();
     _servicio = new MarcaServicio(_context);
 }
Example #16
0
 ActividadEnParoController()
 {
     db        = new PMMXContext();
     _servicio = new ActividadEnParoServicio(db);
 }