/App_Code/DefaultValue.cs

http://github.com/gmhawash/SSR · C# · 66 lines · 50 code · 16 blank · 0 comment · 0 complexity · 9180d638e7d8506a40f87209d4db93c2 MD5 · raw file

  1. using System;
  2. using System.Data.SqlTypes;
  3. namespace ASPNET.StarterKit.BusinessLogicLayer {
  4. public static class DefaultValues {
  5. public static int GetCategoryIdMinValue() {
  6. return (0);
  7. }
  8. public static DateTime GetDateTimeMinValue() {
  9. DateTime MinValue = (DateTime)SqlDateTime.MinValue;
  10. MinValue.AddYears(30);
  11. return (MinValue);
  12. }
  13. public static int GetDurationMinValue() {
  14. return (0);
  15. }
  16. public static int GetCustomFieldIdMinValue() {
  17. return (0);
  18. }
  19. public static int GetIssueIdMinValue() {
  20. return (0);
  21. }
  22. public static int GetIssueCommentIdMinValue() {
  23. return (0);
  24. }
  25. public static int GetIssueNotificationIdMinValue() {
  26. return (0);
  27. }
  28. public static int GetMilestoneIdMinValue() {
  29. return (0);
  30. }
  31. public static int GetPriorityIdMinValue() {
  32. return (0);
  33. }
  34. public static int GetProjectIdMinValue() {
  35. return (0);
  36. }
  37. public static int GetProjectDurationMinValue() {
  38. return (0);
  39. }
  40. public static int GetStatusIdMinValue() {
  41. return (0);
  42. }
  43. public static int GetTimeEntryIdMinValue() {
  44. return (0);
  45. }
  46. public static int GetUserIdMinValue() {
  47. return (0);
  48. }
  49. }
  50. }