コード例 #1
0
ファイル: UserRepository.cs プロジェクト: Bc0ne/Terkwaz-API
 public UserRepository(TerkwazDbContext context)
 {
     _context = context ?? throw new ArgumentNullException("Context is Null");
 }
コード例 #2
0
 public BlogRepository(TerkwazDbContext context)
 {
     _context = context ?? throw new ArgumentNullException("DbContext is null");
 }