Program.cs 674 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Configuration;
  7. using System.Data.SqlClient;
  8. using System.Data;
  9. namespace PC_Build_Games_SQL
  10. {
  11. internal class Program
  12. {
  13. static void Main(string[] args)
  14. {
  15. SQL sql = new SQL();
  16. sql.CompatibilityCheck("Сборка для стриминга", "The Witcher");
  17. /* sql.UserEditing("Олег", "Карлинов", "asdfasdf@sdafcom","1" ,"hashapov");*/
  18. sql.UserEditing("Алексей","Карапек","asdfafd@gmailcom", "gagag", "4");
  19. }
  20. }
  21. }