Program.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Windows.Forms;
  6. namespace ARM_spec_otdelenia
  7. {
  8. static class Program
  9. {
  10. /// <summary>
  11. /// Главная точка входа для приложения.
  12. /// </summary>
  13. [STAThread]
  14. static void Main()
  15. {
  16. Application.EnableVisualStyles();
  17. Application.SetCompatibleTextRenderingDefault(false);
  18. Application.Run(new AdminForm());
  19. }
  20. }
  21. static class MailGet
  22. {
  23. public static string Email { get; set; }
  24. public static string SMS { get; set; }
  25. }
  26. static class UsersClass
  27. {
  28. public static string login { get; set; }
  29. public static string password { get; set; }
  30. public static string mail { get; set; }
  31. public static bool add { get; set; }
  32. public static bool change { get; set; }
  33. }
  34. static class ZdorovieClass
  35. {
  36. public static string Заболевание { get; set; }
  37. public static string Трудоспособность { get; set; }
  38. public static string Лекарства { get; set; }
  39. public static bool add { get; set; }
  40. public static bool change { get; set; }
  41. public static int id { get; set; }
  42. }
  43. static class ContactiClass
  44. {
  45. public static string Город { get; set; }
  46. public static string Улица { get; set; }
  47. public static int Дом { get; set; }
  48. public static int Квартира { get; set; }
  49. public static string Телефон { get; set; }
  50. public static bool add { get; set; }
  51. public static bool change { get; set; }
  52. public static int id { get; set; }
  53. }
  54. static class LichnoeClass
  55. {
  56. public static string Фамилия { get; set; }
  57. public static string Имя { get; set; }
  58. public static string Отчество { get; set; }
  59. public static int Возраст { get; set; }
  60. public static string Пол { get; set; }
  61. public static bool add { get; set; }
  62. public static bool change { get; set; }
  63. public static int id { get; set; }
  64. }
  65. static class SocpolClass
  66. {
  67. public static string Место_работы { get; set; }
  68. public static decimal Доход { get; set; }
  69. public static int Дети { get; set; }
  70. public static string Состав_семьи { get; set; }
  71. public static string ЧС { get; set; }
  72. public static bool add { get; set; }
  73. public static bool change { get; set; }
  74. public static int id { get; set; }
  75. }
  76. static class UslugiClass
  77. {
  78. public static string Наименование { get; set; }
  79. public static decimal Стоимость { get; set; }
  80. public static bool add { get; set; }
  81. public static bool change { get; set; }
  82. public static int id { get; set; }
  83. }
  84. static class HomeClass
  85. {
  86. public static string ФИО { get; set; }
  87. public static string Запись { get; set; }
  88. public static string Начало { get; set; }
  89. public static string Конец { get; set; }
  90. public static bool add { get; set; }
  91. public static bool change { get; set; }
  92. public static int id { get; set; }
  93. }
  94. static class ClientClass
  95. {
  96. public static int Фамилия { get; set; }
  97. public static int Имя { get; set; }
  98. public static int Отчество { get; set; }
  99. public static int Телефон { get; set; }
  100. public static int Место_работы { get; set; }
  101. public static int Наименование_услуги { get; set; }
  102. public static int Трудоспособность { get; set; }
  103. public static int Соц_работник { get; set; }
  104. public static int Заболевание { get; set; }
  105. public static int Время_записи { get; set; }
  106. public static bool add { get; set; }
  107. public static bool change { get; set; }
  108. public static int id { get; set; }
  109. }
  110. }