コード例 #1
0
ファイル: LogRepository.cs プロジェクト: MarlonLira/BaseAPI
 public LogRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #2
0
 public ClientRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #3
0
 public UserAffiliationRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #4
0
 public PartnerRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #5
0
 public Repository(BaseAPIContext baseAPIContext)
 {
     this.Db    = baseAPIContext;
     this.DbSet = Db.Set <TEntity>();
 }
コード例 #6
0
ファイル: RuleRepository.cs プロジェクト: MarlonLira/BaseAPI
 public RuleRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #7
0
 public CollaboratorRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #8
0
 public EmployeeRepository(BaseAPIContext context) : base(context)
 {
 }
コード例 #9
0
 public UserRepository(BaseAPIContext context) : base(context)
 {
 }