Esempio n. 1
0
        public EfContextWrapper(IReverbDbContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

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

            this.context = context;
        }