public VendaService(AutoPecasDbContext autoPecasDbContext) => _AutoPecasDbContext = autoPecasDbContext;
public ProdutoService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public CategoriaService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public UsuarioService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public NotaService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public EnderecoService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public VendaController(VendaService vendaService, NotaService notaService, AutoPecasDbContext autoPecasDbContext) { _VendaService = vendaService; _NotaService = notaService; _AutoPecasDbContext = autoPecasDbContext; }
public TelefoneService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public MarcaService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }
public ContatoService(AutoPecasDbContext autoPecasDbContext) { _AutoPecasDbContext = autoPecasDbContext; }