/// <summary>
 /// List all active States
 /// </summary>
 public void ListStatesByAcronymAndDivision()
 {
     try
     {
         using (_locationModel = new LocationModel())
         {
             _view.StateList = _locationModel.ListAllStatesByAcronymAndDivision(_view.PrefixText);
         }
     }
     catch (Exception ex)
     {
         Logger.Write(string.Format("An Error has ocurred while trying to load the State Information!\n{0}\n{1}", ex.Message, ex.StackTrace));
     }
 }