LongoMatch.Services.ProjectsManager.UpdateProject C# (CSharp) 메소드

UpdateProject() 개인적인 메소드

private UpdateProject ( ProjectLongoMatch project ) : bool
project LongoMatch.Core.Store.ProjectLongoMatch
리턴 bool
        bool UpdateProject(ProjectLongoMatch project)
        {
            try {
                App.Current.DatabaseManager.ActiveDB.Store<ProjectLongoMatch> (project);
                return true;
            } catch (Exception ex) {
                Log.Exception (ex);
                App.Current.Dialogs.ErrorMessage (Catalog.GetString ("An error occured saving the project:\n") + ex.Message);
                return false;
            }
        }