initial oogynize check in _ this actually used to work!

This commit is contained in:
2016-02-14 21:16:31 -08:00
parent b183af5d55
commit 532ea133bc
337 changed files with 30692 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Foo.DataAccessLayer;
using Foo.DataAccessLayer.DataTypes;
namespace Foo.WorkspaceMgr
{
public interface IWorkspaceMgr
{
// Artifact Related
bool LaunchArtifact(ArtifactItem artifactItem);
bool CloseArtifact(ArtifactItem artifactItem);
bool HideShowArtifact(ArtifactItem artifactItem, bool bShow);
// Workspace Related
bool LaunchWorkspace(string WorkspaceName);
bool CloseWorkspace(string WorkspaceName);
bool HideShowWorkspace(string WorkspaceName, bool bShow);
}
}