/// <summary>
 /// Customers table exists.
 /// </summary>
 /// <returns>The outcome of the method.</returns>
 public string CustomersExists()
 {
     try
     {
         return(dataInitializer.CustomerTableExists());
     }
     catch
     {
         return("no");
     }
 }