Exemplo n.º 1
0
        public CreateAuthorCommand(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
Exemplo n.º 2
0
 public FindGenreCommand(IBookStoreContext context)
 {
     Guard.WhenArgument(context, "context").IsNull().Throw();
     this.context = context;
 }
        public UpdateBookRating(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
Exemplo n.º 4
0
        public UpdateAuthorLastName(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
Exemplo n.º 5
0
        public DeleteSellerCommand(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
 public SeedJsonCommand(IBookStoreContext context)
 {
     this.context = context;
 }
Exemplo n.º 7
0
        public UpdateSellerCountry(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }
Exemplo n.º 8
0
        public UpdateGenreDescription(IBookStoreContext context)
        {
            Guard.WhenArgument(context, "context").IsNull().Throw();

            this.context = context;
        }