|
| 1 | +using ADOGenerator.Models; |
| 2 | +using RestAPI; |
| 3 | +using System; |
| 4 | +using System.Collections.Generic; |
| 5 | +using System.Linq; |
| 6 | +using System.Text; |
| 7 | +using System.Threading.Tasks; |
| 8 | + |
| 9 | +namespace ADOGenerator.IServices |
| 10 | +{ |
| 11 | + public interface IExtractorService |
| 12 | + { |
| 13 | + ProjectConfigurations ProjectConfiguration(Project model); |
| 14 | + int GetTeamsCount(ProjectConfigurations appConfig); |
| 15 | + int GetIterationsCount(ProjectConfigurations appConfig); |
| 16 | + int GetBuildDefinitionCount(ProjectConfigurations appConfig); |
| 17 | + int GetReleaseDefinitionCount(ProjectConfigurations appConfig); |
| 18 | + string[] GenerateTemplateArifacts(Project model); |
| 19 | + Dictionary<string, int> GetWorkItemsCount(ProjectConfigurations appConfig); |
| 20 | + List<RequiredExtensions.ExtensionWithLink> GetInstalledExtensions(ProjectConfigurations appConfig, string extractedFolderName); |
| 21 | + void ExportQuries(ProjectConfigurations appConfig, string extractedFolderName); |
| 22 | + bool ExportTeams(RestAPI.ADOConfiguration con, Project model, string extractedFolderName); |
| 23 | + bool ExportIterations(ProjectConfigurations appConfig, string extractedFolderName); |
| 24 | + bool ExportWorkItems(ProjectConfigurations appConfig, string extractedFolderName); |
| 25 | + bool ExportRepositoryList(ProjectConfigurations appConfig, string extractedFolderName); |
| 26 | + int GetBuildDefinitions(ProjectConfigurations appConfig, string extractedFolderName); |
| 27 | + int GeneralizingGetReleaseDefinitions(ProjectConfigurations appConfig, string extractedFolderName); |
| 28 | + void GetServiceEndpoints(ProjectConfigurations appConfig, string extractedFolderName); |
| 29 | + bool ExportDeliveryPlans(ProjectConfigurations appConfig, string extractedFolderName); |
| 30 | + bool IsTemplateExists(string templateName); |
| 31 | + } |
| 32 | +} |
0 commit comments