public WH(string ip, string unm, string pswd, string dbnm, string appnm, int port = 5432) { //Как происходит инициализация объектов? //Как происходит создание объекта? //new PgProvider(ip, unm, pswd, dbnm, appnm) - создание объекта PgP = new PgProvider(ip, unm, pswd, dbnm, appnm); prvds = PgP.GetPrvds(); cs = PgP.GetConsumers(); }
public WH(IDALWH dl) { PgP = dl; prvds = PgP.GetPrvds(); cs = PgP.GetConsumers(); gs = PgP.GetGoods(); incom = PgP.GetIncom(); stock = PgP.GetStocks(); leaving = PgP.GetLeav(); //PgP.InsertIncom(1, 4, 100, 33); }
public void InsertPrvd(string st) { PgP.InsertPrvd(st); prvds = PgP.GetPrvds(); }