コード例 #1
0
ファイル: UserProfileRepository.cs プロジェクト: a-kelen/Akel
 public UserProfileRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #2
0
ファイル: TestRepository.cs プロジェクト: a-kelen/Akel
 public TestRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #3
0
 public CommentRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #4
0
ファイル: MessageRepository.cs プロジェクト: a-kelen/Akel
 public MessageRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #5
0
ファイル: LikeRepository.cs プロジェクト: a-kelen/Akel
 public LikeRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #6
0
ファイル: FriendRepository.cs プロジェクト: a-kelen/Akel
 public FriendRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #7
0
ファイル: AuditionRepository.cs プロジェクト: a-kelen/Akel
 public AuditionRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #8
0
ファイル: ResultRepository.cs プロジェクト: a-kelen/Akel
 public ResultRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #9
0
ファイル: SubscriberRepository.cs プロジェクト: a-kelen/Akel
 public SubscriberRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #10
0
ファイル: QuestionRepository.cs プロジェクト: a-kelen/Akel
 public QuestionRepository(ApplContext context)
 {
     this.db = context;
 }
コード例 #11
0
 public AnswerRepository(ApplContext context)
 {
     this.db = context;
 }