-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
19 lines (16 loc) · 859 Bytes
/
Program.cs
File metadata and controls
19 lines (16 loc) · 859 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Manager;
using System;
using static System.Runtime.InteropServices.JavaScript.JSType;
internal class Program
{
private static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
ConectDB db = new ConectDB();
//db.InsertDataCategory("Data Source=SRV2\\PUPILS;Initial Catalog=IceCreamStore;Integrated Security=True;TrustServerCertificate=True");
//db.InsertDataProduct("Data Source=SRV2\\PUPILS;Initial Catalog=IceCreamStore;Integrated Security=True;TrustServerCertificate=True");
//db.printCategories("Data Source=SRV2\\PUPILS;Initial Catalog=IceCreamStore;Integrated Security=True;TrustServerCertificate=True");
//Console.WriteLine();
db.printProducts("Data Source=SRV2\\PUPILS;Initial Catalog=IceCreamStore;Integrated Security=True;TrustServerCertificate=True");
}
}