I'm struggling to choose appropriate names for my actions. I want to distinguish between actions that return a view to:
- Create
- Edit
- Edit-Create
Here is what I have so far:
Create --> Show the Empty Form for Create Add --> Receives data from Create and Save New Entity Edit --> Shows Existing Entity in a form for editing Update --> Saves the changes on an existing Entity ??? --> Shows the form for either editing or creating depending on the situation Save --> Either saves or updates the entity depending on whether the entity already exists or not.
So, What would be an appropriate name for the action that Shows the Create/Edit
view, which sends its data to Save
.
I had considered CreateEdit
since it's clear and specific, but I'm not sure. Any suggestions?