コード例 #1
0
 public PostImageService(blogcontext context) : base(context)
 {
 }
コード例 #2
0
ファイル: CategoryService.cs プロジェクト: onur-gur/blog
 public CategoryService(blogcontext context) : base(context)
 {
 }
コード例 #3
0
ファイル: Repository.cs プロジェクト: onur-gur/blog
 public Repository(blogcontext context)
 {
     this._context  = context;
     this._entities = context.Set <T>();
 }