public ProductSpecController(IProductSpecRepository ps, IProductRepository p, ISpecRepository s)
 {
     productSpecRepo = ps;
     productRepo     = p;
     specRepo        = s;
 }
 public SpecController(ISpecRepository specRepo)
 {
     repository = specRepo;
 }