private void btnncb_Click(object sender, EventArgs e)
        {
            NewCB NCB = new NewCB();

            this.Hide();
            NCB.Show();
        }
Esempio n. 2
0
        public bool MakeNewEntry(string filePath, NewCustomers c1)
        {
            bool        IsDone   = false;
            FileUtility f1       = new FileUtility(filePath);
            NewCB       n        = new NewCB();
            string      customer = f1.SerializeJSONDataNew(c1);

            IsDone = f1.WriteLog(customer);


            return(IsDone);
        }