Exemplo n.º 1
0
 public AzureManagement(IMlogger logger, IAppConfiguration configuration, IDataExporter dataExporter)
 {
     Logger = logger;
     Configuration = configuration;
     var subscriptionId = configuration.SubscriptionId();
     var base64EncodedCertificate = configuration.Base64EncodedManagementCertificate();
     MyCloudCredentials = getCredentials(subscriptionId, base64EncodedCertificate);
     Exporter = dataExporter;
 }
Exemplo n.º 2
0
        public AzureManagement(IMlogger logger, IAppConfiguration configuration, IDataExporter dataExporter)
        {
            Logger        = logger;
            Configuration = configuration;
            var subscriptionId           = configuration.SubscriptionId();
            var base64EncodedCertificate = configuration.Base64EncodedManagementCertificate();

            MyCloudCredentials = getCredentials(subscriptionId, base64EncodedCertificate);
            Exporter           = dataExporter;
        }
Exemplo n.º 3
0
 public FileExporter(IMlogger logger, string exportFileLocation)
 {
     _ExportData = new List <string>();
     _ExportFile = exportFileLocation;
     _Logger     = logger;
 }
Exemplo n.º 4
0
 public HtmlExporter(IMlogger logger, string exportFileLocation, IHtmlWrapper wrapper )
     : base(logger, exportFileLocation)
 {
     Wrapper = wrapper;
 }
 public AzureManagementDownloader(IMlogger logger, IAppConfiguration configuration, IDataExporter dataExporter)
     : base(logger, configuration, dataExporter)
 {
 }
 public AzureManagementDownloader(IMlogger logger, IAppConfiguration configuration, IDataExporter dataExporter)
     : base(logger, configuration, dataExporter)
 {
 }
Exemplo n.º 7
0
 public HtmlExporter(IMlogger logger, string exportFileLocation, IHtmlWrapper wrapper)
     : base(logger, exportFileLocation)
 {
     Wrapper = wrapper;
 }
Exemplo n.º 8
0
 public CsvExporter(IMlogger logger, string exportFileLocation)
     : base(logger, exportFileLocation)
 {
 }
Exemplo n.º 9
0
 public CsvExporter(IMlogger logger, string exportFileLocation)
     : base(logger, exportFileLocation)
 {
 }
Exemplo n.º 10
0
 public FileExporter(IMlogger logger, string exportFileLocation)
 {
     _ExportData = new List<string>();
     _ExportFile = exportFileLocation;
     _Logger = logger;
 }