示例#1
0
        public EfContextWrapper(IReverbDbContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
示例#2
0
        public SaveContext(IReverbDbContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }