public FubuContinuation Command(DeleteCommandModel model)
 {
     _productService.Delete(model.Id);
     return FubuContinuation.RedirectTo(new SuccessOperationRequest
     {
         Id = model.Id,
         Operation = OperationType.Delete
     });
 }
 public FubuContinuation Command(DeleteCommandModel model)
 {
     _productService.Delete(model.Id);
     return(FubuContinuation.RedirectTo(new SuccessOperationRequest
     {
         Id = model.Id,
         Operation = OperationType.Delete
     }));
 }