public ClientesService(OnFarmContext context) { _context = context; }
public PedidosService(OnFarmContext context) { _context = context; }
public ClientesController(OnFarmContext context) { _context = context; _service = new ClientesService(_context); }
public PedidosController(OnFarmContext context) { _context = context; _service = new PedidosService(_context); }