Prizm.Main.Forms.PipeMill.Heat.HeatViewModel.SetupManufacturers C# (CSharp) Method

SetupManufacturers() private method

private SetupManufacturers ( ) : void
return void
        private void SetupManufacturers()
        {
            try
            {
            manufacrurers = new List<PlateManufacturer>(repo.PlateManRepo.GetAll().ToList());
            }
            catch(RepositoryException ex)
            {
                log.Warn(this.GetType().Name + " | " + ex.ToString());
                notify.ShowWarning(Program.LanguageManager.GetString(StringResources.Notification_Error_Db_Message),
            Program.LanguageManager.GetString(StringResources.Notification_Error_Db_Header));
            }
        }