// Added by K.G for 'Allow the UI to load previously generated zip files in order to pre-populate the form ' module
 public bool ExtractPreviouslyGeneratedSkinPackageZip(string skinFolderPath, string zipPath)
 {
     bool result = false;
     SkinManager manager = new SkinManager(skinFolderPath);
     manager.DeleteUploadFolders();   // Added by K.G(16-JAN-2012) to complete load from zip functionality
     result = manager.CreateSkinPackageDirectoryAndUnzipFiles(zipPath);
     FileInfo skinZipFile = new FileInfo(zipPath);
     skinZipFile.Delete();
     return result;
 }
 // Added by K.G for 'Allow the UI to load previously generated zip files in order to pre-populate the form ' module
 public bool ExtractPreviouslyGeneratedSkinPackageZip(string skinFolderPath, string zipPath)
 {
     bool result = false;
     SkinManager manager = new SkinManager(skinFolderPath);
     result = manager.CreateSkinPackageDirectoryAndUnzipFiles(zipPath);
     return result;
 }
 // Added by Optimus for 'Allow the UI to load previously generated zip files in order to pre-populate the form ' module
 public bool ExtractPreviouslyGeneratedSkinPackageZip(string skinFolderPath)
 {
     SkinManager manager = new SkinManager(skinFolderPath);
     manager.CreateSkinPackageDirectoryAndUnzipFiles();
     return true;
 }