123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Diagnostics;
- namespace proba
- {
- internal class DebugAndTrace
- {
- public static void testing(string Login, string[] Surname, string[] Name, string[] Patronomic, string[] add_login, string[] buy, string[] add_nomenklatura, string[] add_country, string[] add_supplier, string[] add_performer, string[] add_genre, string[] add_edition, string[] update_nomenklatura, string[] update_country, string[] update_supplier, string[] update_performer, string[] update_genre, string[] update_edition)
- {
- Trace.Listeners.Add(new TextWriterTraceListener("Debug.txt"));
- Debug.Indent();
- Trace.Indent();
- Debug.WriteLine("Программа запустилась");
- if(Login != null)
- {
- Debug.WriteLine("Вход в программу: " + Login);
- }
- if (add_login[0] != null)
- {
- for (int i = 0; i < add_login.Length - 1; i++)
- {
- Debug.WriteLine("Пользователь добавлен: " + Surname[i] + " " + Name[i] + " " + Patronomic[i] + " Логин: " + add_login[i]);
- }
- }
- if (add_nomenklatura[0] != null)
- {
- Debug.WriteLine("Пользователь добавил в магазин товары:");
- for (int i = 0; i < add_nomenklatura.Length - 1; i++)
- {
- Debug.WriteLine(i+1 + ") " + add_nomenklatura[i]);
- }
- }
- if (buy[0] != null)
- {
- Debug.WriteLine("Пользователь совершил продажу товаров:");
- for (int i = 0; i < buy.Length - 1; i++)
- {
- Debug.WriteLine(i+1 + ") " + buy[i]);
- }
- }
- if (add_country[0] != null)
- {
- Debug.WriteLine("Пользователь добавил в БД страны:");
- for (int i = 0; i < add_country.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + add_country[i]);
- }
- }
- if (add_supplier[0] != null)
- {
- Debug.WriteLine("Пользователь добавил в БД поставщиков:");
- for (int i = 0; i < add_supplier.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + add_supplier[i]);
- }
- }
- if (add_performer[0] != null)
- {
- Debug.WriteLine("Пользователь добавил в БД исполнителей:");
- for (int i = 0; i < add_performer.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + add_performer[i]);
- }
- }
- if (add_genre[0] != null)
- {
- Debug.WriteLine("Пользователь добавил в БД жанры музыки:");
- for (int i = 0; i < add_genre.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + add_genre[i]);
- }
- }
- if (add_edition[0] != null)
- {
- Debug.WriteLine("Пользователь добавил в БД исполнителей:");
- for (int i = 0; i < add_edition.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + add_edition[i]);
- }
- }
- if (update_nomenklatura[0] != null)
- {
- Debug.WriteLine("Пользователь изменил товары:");
- for (int i = 0; i < update_nomenklatura.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + update_nomenklatura[i]);
- }
- }
- if (update_country[0] != null)
- {
- Debug.WriteLine("Пользователь изменил страны:");
- for (int i = 0; i < update_country.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + update_country[i]);
- }
- }
- if (update_supplier[0] != null)
- {
- Debug.WriteLine("Пользователь изменил поставщиков:");
- for (int i = 0; i < update_supplier.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + update_supplier[i]);
- }
- }
- if (update_performer[0] != null)
- {
- Debug.WriteLine("Пользователь изменил исполнителей:");
- for (int i = 0; i < update_performer.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + update_performer[i]);
- }
- }
- if (update_genre[0] != null)
- {
- Debug.WriteLine("Пользователь изменил жанры музыки:");
- for (int i = 0; i < update_genre.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + update_genre[i]);
- }
- }
- if (update_edition[0] != null)
- {
- Debug.WriteLine("Пользователь изменил исполнителей:");
- for (int i = 0; i < update_edition.Length - 1; i++)
- {
- Debug.WriteLine(i + 1 + ") " + update_edition[i]);
- }
- }
- Debug.WriteLine("");
- Trace.Flush();
- }
- }
- }
|