public VcsRootEntryMapper(IVcsRootMapper vcsRootMapper) { if (vcsRootMapper == null) { throw new ArgumentNullException(nameof(vcsRootMapper)); } _vcsRootMapper = vcsRootMapper; }
public VcsRootEntryMapper(IVcsRootMapper vcsRootMapper) { _vcsRootMapper = vcsRootMapper ?? throw new ArgumentNullException(nameof(vcsRootMapper)); }