public OtherProductController(IOtherProductRepo repo)
 {
     _repo = repo;
 }
 public OtherProductController()
 {
     _repo = new OtherProductRepo();
 }