Files
DP44/Common/DTS.CommonCore/.svn/pristine/68/687ceed12975b6bb208d9b129a7eb92df863ac13.svn-base

22 lines
1009 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using System.Collections.Generic;
using DTS.Common.Base;
namespace DTS.Common.Interface.Groups
{
/// <summary>
/// controls parsing out channels from .GRP file, displaying results, and allowing selection of groups and renaming of groups
/// </summary>
public interface IGroupImportPreviewView:IBaseView
{
/// <summary>
/// validates currently selected groups, including channels and group names
/// </summary>
/// <param name="errors">any errors that were detected during validation. Errors indicate you can not continue</param>
/// <param name="warnings">any warnings that were detected during validation. Warnings are not fatal and user can continue
/// if they want
/// </param>
/// <returns>true if all groups selected in preview are valid, false if there are invalid groups selected</returns>
bool Validate(bool userIsAdmin, out List<string>errors, out List<string> warnings);
}
}