Created
September 15, 2012 16:08
-
-
Save davybrion/3728615 to your computer and use it in GitHub Desktop.
code snippets for "Thou Shalt Name Thy Parameter “command”"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[GridAction(EnableCustomBinding = true)] | |
public ActionResult GetModels(GridCommand gridCommand) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public GridActionAttribute() | |
{ | |
this.ActionParameterName = "command"; | |
this.adapterFactory = DI.Current.Resolve<IGridActionResultAdapterFactory>(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[GridAction(EnableCustomBinding = true)] | |
public ActionResult GetModels(GridCommand command) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment