123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Configuration;
- using System.Data.SqlClient;
- using System.Data;
- namespace PC_Build_Games_SQL
- {
- internal class Program
- {
- static void Main(string[] args)
- {
- SQL sql = new SQL();
-
- sql.CompatibilityCheck("Сборка для стриминга", "The Witcher");
- /* sql.UserEditing("Олег", "Карлинов", "asdfasdf@sdafcom","1" ,"hashapov");*/
- sql.UserEditing("Алексей","Карапек","asdfafd@gmailcom", "gagag", "4");
- }
- }
-
- }
|