コード例 #1
0
 public BandAlbumRepository(BandAlbumContext context, IPropertyMappingService propertyMappingService)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
     _propertyMappingService = propertyMappingService;
 }
コード例 #2
0
 public BandAlbumRepository(BandAlbumContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }