PokerFieldTemplateUserControl.cs 464 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Web.DynamicData;
  6. namespace MonoTests.Common
  7. {
  8. public class PokerFieldTemplateUserControl : FieldTemplateUserControl
  9. {
  10. public string GetChildrenPath ()
  11. {
  12. return ChildrenPath;
  13. }
  14. public string GetForeignKeyPath ()
  15. {
  16. return ForeignKeyPath;
  17. }
  18. public string CallBuildChildrenPath (string path)
  19. {
  20. return BuildChildrenPath (path);
  21. }
  22. }
  23. }