コード例 #1
0
ファイル: Repository.cs プロジェクト: dobri19/TeleTwitterLink
        public Repository(TeleTwitterLinkDbContext context)
        {
            if (context == null)
            {
                throw new ArgumentNullException("DbContext cant be null");
            }

            this.context = context;
        }
コード例 #2
0
 public EntitySaver(TeleTwitterLinkDbContext context)
 {
     this.context = context;
 }