using InABox.Core; using InABox.Wpf; namespace PRSDesktop { public class EmailTemplateManagerWindow : ThemableWindow { public EmailTemplateManagerWindow(DataModel model) { var grid = new DataModelTemplateGrid(); grid.Model = model; grid.Refresh(true, true); Content = grid; } } }