Exemplo n.º 1
0
 public function __construct(Vial $template = null, $flip = true)
 {
     parent::__construct($template, $flip);
     $this->id = 1;
     $this->setupDate = new \DateTime('2000-01-01 00:00:00');
     $this->male = new StockVial();
     $this->male->setStock(new Stock());
     $this->maleName = 'test male';
     $this->virgin = new StockVial();
     $this->virgin->setStock(new Stock());
     $this->virginName = 'test virgin';
 }