/// <summary>
 /// Checks the database.
 /// </summary>
 /// <returns>The outcome of the method.</returns>
 public bool DbInitializer()
 {
     try
     {
         return(dataInitializer.CheckDatabase());
     }
     catch
     {
         return(false);
     }
 }