public PetListByOwnerGender(IPetOwnerServices <PetOwner> petOwnerServices, IHttpHelper <PetOwner> httpHelper)
 {
     this._petOwnerServices = petOwnerServices;
     this._httpHelper       = httpHelper;
 }
 public HomeController(IPetOwnerServices petOwnerServices)
 {
     _petOwnerServices = petOwnerServices;
 }
 public PetListByOwnerGender()
 {
     this._httpHelper       = new HttpHelper <PetOwner>();
     this._petOwnerServices = new PetOwnerServices <PetOwner>(_httpHelper);
 }