Presnyakova V. V. Lab_6 #7

Closed
Victoria_Presnyakova wants to merge 24 commits from Lab_6 into Lab_5
Showing only changes of commit 46ae6a1226 - Show all commits

View File

@ -14,12 +14,14 @@ namespace JewelryStoreListImplement
public List<Order> Orders { get; set; }
public List<Jewel> Jewels { get; set; }
public List<Client> Clients { get; set; }
public List<Implementer> Implementers { get; set; }
private DataListSingleton()
{
Components = new List<Component>();
Orders = new List<Order>();
Jewels = new List<Jewel>();
Implementers = new List<Implementer>();
}
public static DataListSingleton GetInstance()
{