コード例 #1
0
        public CreateAuthorCommand(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
コード例 #2
0
 public FindGenreCommand(IBookStoreContext context)
 {
     Guard.WhenArgument(context, "context").IsNull().Throw();
     this.context = context;
 }
コード例 #3
0
        public UpdateBookRating(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
コード例 #4
0
        public UpdateAuthorLastName(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
コード例 #5
0
        public DeleteSellerCommand(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
コード例 #6
0
 public SeedJsonCommand(IBookStoreContext context)
 {
     this.context = context;
 }
コード例 #7
0
        public UpdateSellerCountry(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
コード例 #8
0
        public UpdateGenreDescription(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }