Ejemplo n.º 1
0
 public TransactionController(IBankAppService bankAppService, IRegisterAppService registerAppService, IGrandChildTreeAppService grandChildTreeAppService, IChildTreeAppService childTreeAppService, IParentTreeAppService parentTreeAppService)
 {
     _childTreeAppService      = childTreeAppService;
     _grandChildTreeAppService = grandChildTreeAppService;
     _parentTreeAppService     = parentTreeAppService;
     _bankAppService           = bankAppService;
     _registerAppService       = registerAppService;
 }
Ejemplo n.º 2
0
 public RegisterAppService(IGrandChildTreeAppService grandChildTreeAppService, IChildTreeAppService childTreeAppService, IParentTreeAppService parentTreeAppService)
 {
     _childTreeAppService      = childTreeAppService;
     _grandChildTreeAppService = grandChildTreeAppService;
     _parentTreeAppService     = parentTreeAppService;
 }