public FormatoService(PemarsaContext context, IDocumentoAdjuntoService serviceDocumentoAdjunto, IHerramientaService serviceHerramientaService) { _repository = new FormatoRepository(context); _serviceHerramientaService = serviceHerramientaService; _serviceDocumentoAdjunto = serviceDocumentoAdjunto; _context = context; }
public CrearRemisionService(PemarsaContext context, IOrdenTrabajoService serviceOrdenTrabajo, IRemisionService serviceRemision) { _consultarOrdenTrabajo = new ConsultarOrdenesTrabajoEstadoRemisionESCommand(serviceOrdenTrabajo); _validarClienteYLineas = new ValidarClienteYLineasCommand(serviceOrdenTrabajo); _crearRemisionDetalle = new CrearRemisionDetalleCommand(); _crearRemision = new CrearRemisionESCommand(serviceRemision); _actualizarEstadosOrdenesDeTrabajo = new ActualizarEstadoOrdenesDeTrabajoESCommand(serviceOrdenTrabajo); _parametros = new Parametros(); }
public OrdenTrabajoService( PemarsaContext context, IDocumentoAdjuntoService serviceDocumentoAdjunto, IProcesoService procesoService) { _ordenTrabajoRepositorio = new OrdenTrabajoRepository(context); _serviceDocumentoAdjunto = serviceDocumentoAdjunto; _procesoService = procesoService; _context = context; }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, PemarsaContext context) { if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseCors("PemarsaPolicy"); app.UseMvcWithDefaultRoute(); app.UseSwagger(); app.UseStaticFiles(); app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1/swagger.json", "Pemarsa"); }); context.Database.EnsureCreated(); ////TODO: Esta linea debe estar comentada para ejecutar las migraciones DBInitializer.Initialize(context); }
public HerramientaRepository(DbContext context) { _context = (PemarsaContext)context; }
public RemisionRepository(DbContext context) { _context = (PemarsaContext)context; }
public ClienteService(PemarsaContext context, IDocumentoAdjuntoService serviceDocumentoAdjunto) { _repository = new ClienteRepository(context); _serviceDocumentoAdjunto = serviceDocumentoAdjunto; _context = context; }
public RemisionService(PemarsaContext context, IDocumentoAdjuntoService serviceDocumentoAdjunto) { _repository = new RemisionRepository(context); _serviceDocumentoAdjunto = serviceDocumentoAdjunto; _context = context; }
public HerramientaService(PemarsaContext context) { _repository = new HerramientaRepository(context); _context = context; }
public OrdenTrabajoRepository(DbContext context) { _context = (PemarsaContext)context; }
public FormatoRepository(DbContext context) { _context = (PemarsaContext)context; }
public ProcesoService(PemarsaContext context, IDocumentoAdjuntoService documentoAdjuntoService) { _procesoRepository = new ProcesoRepository(context); _documentoAdjuntoService = documentoAdjuntoService; _context = context; }
public ParametroService(PemarsaContext context) { _repository = new ParametroRepository(context); }
public DocumentoAdjuntoRepository(DbContext dbContext) { _context = (PemarsaContext)dbContext; }
public ClienteRepository(DbContext context) { _context = (PemarsaContext)context; }
public ParametroRepository(PemarsaContext context) { _context = context; }
public DocumentoAdjuntoService(PemarsaContext _context, IConfiguration config) { _repository = new DocumentoAdjuntoRepository(_context); _configuratio = config; }