public AllocationAppServiceTransactionDecorator(IAllocationAppService allocationAppService,
                                                 IUnityOfWork unityOfWork)
 {
     this.allocationAppService = allocationAppService;
     this.unityOfWork          = unityOfWork;
 }
 public AllocationController(IAllocationAppService allocationAppService,
                             IMapper mapper)
 {
     this.allocationAppService = allocationAppService;
     this.mapper = mapper;
 }