コード例 #1
0
ファイル: UserRepository.cs プロジェクト: Lulubul/Server
 public UserRepository(HeroesContext context)
 {
     _context = context;
     _sha256 = SHA256Managed.Create();
 }
コード例 #2
0
ファイル: CreaturesRepository.cs プロジェクト: Lulubul/Server
 public CreaturesRepository(HeroesContext context)
 {
     _context = context;
 }
コード例 #3
0
ファイル: HeroesRepository.cs プロジェクト: Lulubul/Server
 public HeroesRepository(HeroesContext context)
 {
     _context = context;
 }
コード例 #4
0
ファイル: Repository.cs プロジェクト: Lulubul/Server
 public Repository()
 {
     _context = new HeroesContext();
     _context.Configuration.LazyLoadingEnabled = false;
 }