Resolve "Add a dropdown box in Customer Information to indicate if customer is new/old" #1694

Merged
korina.cordero merged 8 commits from 773-add-a-dropdown-box-in-customer-information-to-indicate-if-customer-is-new-old into 746-resq-2-0-final 2023-11-10 05:47:06 +00:00
Showing only changes of commit c77591fe01 - Show all commits

View file

@ -9,12 +9,14 @@ use Symfony\Component\Console\Output\OutputInterface;
use Doctrine\ORM\EntityManagerInterface;
use App\Service\JobOrderManager;
class SetJobOrderCustNewCommand extends Command
{
protected $em;
protected $jo_manager;
public function __construct(EntityManagerInterface $em, JobOrderManager)
public function __construct(EntityManagerInterface $em, JobOrderManager $jo_manager)
{
$this->em = $em;
$this->jo_manager = $jo_manager;