public SharedProject CreateSharedProject(string projId, string proj, SharedRepositorySource source,
                                          IEnumerable <SharedRepository> sourceRepositories)
 {
     return(SharingLogic.CreateSharedProject(projId, proj, source, sourceRepositories));
 }
 public bool HandleErrors(Action action, bool throwExceptions = false)
 {
     return(SharingLogic.HandleErrors(action, throwExceptions));
 }
 public bool ShareChanges(List <SharedProject> sharedProjects, SharedRepositorySource source,
                          out List <SendReceiveResult> results, IList <SharedProject> reviewProjects)
 {
     return(SharingLogic.ShareChanges(sharedProjects, source, out results, reviewProjects));
 }