Last active
April 14, 2016 18:43
-
-
Save avisser/e649ac9371b813ce3f37fadada29e503 to your computer and use it in GitHub Desktop.
This file contains 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 class GridColumnFactory<TModel> : IHideObjectMembers where TModel : class | |
{ | |
} | |
public class MyFactory<T> : GridColumnFactory<T> where T : class | |
{ | |
public MyFactory() : base(insert_params_here) | |
{ | |
} | |
public MyFactory(Grid<T> container, ViewContext viewContext, IUrlGenerator urlGenerator) | |
: base(container, viewContext, urlGenerator, (IGridColumnContainer<T>) container) | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment