示例#1
0
 public GetCustomTagHandler(IGetCustomTagsService getCustomTagsService)
 {
     EnsureArg.IsNotNull(getCustomTagsService, nameof(getCustomTagsService));
     _getCustomTagsService = getCustomTagsService;
 }
示例#2
0
 public GetCustomTagsServiceTests()
 {
     _customTagStore       = Substitute.For <ICustomTagStore>();
     _dicomTagParser       = Substitute.For <IDicomTagParser>();
     _getCustomTagsService = new GetCustomTagsService(_customTagStore, _dicomTagParser);
 }