2015-06-26 12:42:20 -04:00
|
|
|
|
namespace Filtration.ThemeEditor.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public interface IThemeViewModelFactory
|
|
|
|
|
{
|
2015-07-05 17:43:17 -04:00
|
|
|
|
IThemeEditorViewModel Create();
|
|
|
|
|
void Release(IThemeEditorViewModel themeEditorViewModel);
|
2015-06-26 12:42:20 -04:00
|
|
|
|
}
|
|
|
|
|
}
|