public IssueAssignmentService(GenericSafeDeleteImp <IssueAssignment> Impl,
                               AnimalFoodService animalFoodService,
                               PersonService personService, MalinfoService malinfoService) : base(Impl)
 {
     this.animalFoodService = animalFoodService;
     this.personService     = personService;
     _malinfoService        = malinfoService;
 }
 public AnimalFoodBuyService(GenericSafeDeleteImp <AnimalFoodBuy> Impl,
                             AnimalFoodService animalFoodService) : base(Impl)
 {
     this._animalFoodService = animalFoodService;
 }