public void Save()
        {
            var repo = new Repository
            (
                "SourceControlTest",
                @"C:\Users\Christopher\Documents\SourceControlTest",
                @"https://github.com/ckuhn203/SourceControlTest.git"
            );

            var config = new SourceControlConfiguration(
                "Chris McClellan",
                "*****@*****.**",
                @"C:\users\christopher\documents\",
                new List<Repository>() {repo}
                );

            var service = new SourceControlConfigurationService();
            service.SaveConfiguration(config);
        }
        public void Save()
        {
            var repo = new Repository
                       (
                "SourceControlTest",
                @"C:\Users\Christopher\Documents\SourceControlTest",
                @"https://github.com/ckuhn203/SourceControlTest.git"
                       );

            var config = new SourceControlConfiguration(
                "Chris McClellan",
                "*****@*****.**",
                @"C:\users\christopher\documents\",
                new List <Repository>()
            {
                repo
            }
                );

            var service = new SourceControlConfigurationService();

            service.SaveConfiguration(config);
        }
 public void Load()
 {
     var service = new SourceControlConfigurationService();
     var config = service.LoadConfiguration();
 }
 public void Load()
 {
     var service = new SourceControlConfigurationService();
     var config  = service.LoadConfiguration();
 }