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;
 }
 public AnimalFoodService(GenericSafeDeleteImp <AnimalFood> Impl) : base(Impl)
 {
 }
Пример #4
0
 public PersonService(GenericSafeDeleteImp <Distribution> Impl,
                      DistributionService distributionService) : base(Impl)
 {
     _distributionService = distributionService;
 }