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