Exemplo n.º 1
0
 public ActionResult <AllocationDto> CreateAllocation(long planId, AllocationDto allocationDto)
 {
     allocationDto.PlanId = planId;
     return(Ok(_planService.CreateAllocation(allocationDto)));
 }