123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace ARM_spec_otdelenia
- {
- static class Program
- {
- /// <summary>
- /// Главная точка входа для приложения.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new AdminForm());
- }
- }
- static class MailGet
- {
- public static string Email { get; set; }
- public static string SMS { get; set; }
- }
- static class UsersClass
- {
- public static string login { get; set; }
- public static string password { get; set; }
- public static string mail { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- }
- static class ZdorovieClass
- {
- public static string Заболевание { get; set; }
- public static string Трудоспособность { get; set; }
- public static string Лекарства { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- static class ContactiClass
- {
- public static string Город { get; set; }
- public static string Улица { get; set; }
- public static int Дом { get; set; }
- public static int Квартира { get; set; }
- public static string Телефон { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- static class LichnoeClass
- {
- public static string Фамилия { get; set; }
- public static string Имя { get; set; }
- public static string Отчество { get; set; }
- public static int Возраст { get; set; }
- public static string Пол { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- static class SocpolClass
- {
- public static string Место_работы { get; set; }
- public static decimal Доход { get; set; }
- public static int Дети { get; set; }
- public static string Состав_семьи { get; set; }
- public static string ЧС { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- static class UslugiClass
- {
- public static string Наименование { get; set; }
- public static decimal Стоимость { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- static class HomeClass
- {
- public static string ФИО { get; set; }
- public static string Запись { get; set; }
- public static string Начало { get; set; }
- public static string Конец { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- static class ClientClass
- {
- public static int Фамилия { get; set; }
- public static int Имя { get; set; }
- public static int Отчество { get; set; }
- public static int Телефон { get; set; }
- public static int Место_работы { get; set; }
- public static int Наименование_услуги { get; set; }
- public static int Трудоспособность { get; set; }
- public static int Соц_работник { get; set; }
- public static int Заболевание { get; set; }
- public static int Время_записи { get; set; }
- public static bool add { get; set; }
- public static bool change { get; set; }
- public static int id { get; set; }
- }
- }
|