public static string LoadTemplate(int templeId)
        {
            var         result   = string.Empty;
            TemplateBiz template = new TemplateBiz();

            result = template.LoadTemplate(templeId);
            return(result);
        }
        public static List <Template> GetAllTemplate()
        {
            TemplateBiz template = new TemplateBiz();

            return(template.GetAllTemplate());
        }
        public static void SaveTemplate(string fileName, string fileContent)
        {
            TemplateBiz template = new TemplateBiz();

            template.SaveTemplate(fileName, fileContent);
        }