public async Task <IActionResult> Delete(Guid id)
        {
            var input  = new DeletePlanInput(id);
            var result = _handler.Handle(input);

            return(await ApiResponse(result));
        }
Exemple #2
0
 public ICommandResult Handle(DeletePlanInput input)
 {
     throw new NotImplementedException();
 }