Esempio n. 1
0
 public static FormQueueNumber GetInstance()
 {
     if (_instance == null)
     {
         _instance = new FormQueueNumber();
     }
     return(_instance);
 }
Esempio n. 2
0
File: Main.cs Progetto: tuga1975/SSK
 private void Main_Load(object sender, EventArgs e)
 {
     try
     {
         APIUtils.FormQueueNumber = FormQueueNumber.GetInstance();
         APIUtils.FormQueueNumber.ShowOnSecondaryScreen();
         APIUtils.FormQueueNumber.Show();
     }
     catch (Exception ex)
     {
         this.LayerWeb.ShowMessageAsync("Error Queue", ex.Message);
     }
 }