Exemplo n.º 1
0
 public BandAlbumRepository(BandAlbumContext context, IPropertyMappingService propertyMappingService)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
     _propertyMappingService = propertyMappingService;
 }
 public BandAlbumRepository(BandAlbumContext context)
 {
     _context = context ?? throw new ArgumentNullException(nameof(context));
 }