예제 #1
0
        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;
 }