1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace ЭлектронныйЖурнал
- {
- internal static class Program
- {
- /// <summary>
- /// Главная точка входа для приложения.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Авторизация());
- }
- }
- public static class Воспитанникиclass
- {
- public static string ФИО
- {
- get; set;
- }
- public static string Телефон
- {
- get; set;
- }
- public static string Адрес
- {
- get; set;
- }
- public static string Значок
- {
- 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;
- }
- }
- }
- public static class Посещаемостьclass
- {
- public static int КВ
- {
- 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;
- }
- }
- public static class Авторизацияclass
- {
- public static int Login
- {
- get; set;
- }
- }
|