using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.SQLExaminer;
public static class ExtensionMethods
{
public static String GetFilePath(this ExaminerConfigurationType type)
{
return Path.Combine(Helper.SQL_EXAMINER_CONFIG_FOLDER, type.ToString() + ".xml");
}
public static String GetFileName(this ExaminerConfigurationType type)
{
return type.ToString() + ".xml";
}
}