BuildMonkey.TeamCity.GetAllProjectsCommand.GetAllProjectsCommand C# (CSharp) Method

GetAllProjectsCommand() public method

public GetAllProjectsCommand ( IWebRequestMaker webRequestMaker, IXmlParser parser, string teamCityBaseUri ) : System
webRequestMaker IWebRequestMaker
parser IXmlParser
teamCityBaseUri string
return System
        public GetAllProjectsCommand(IWebRequestMaker webRequestMaker, IXmlParser<Project> parser, string teamCityBaseUri)
        {
            _webRequestMaker = webRequestMaker;
            _parser = parser;
            _allProjectsUri = new Uri(teamCityBaseUri + "/httpAuth/app/rest/projects");
        }