if
request.post?
@author = Author.new(params[:author_name])
@publisher = Publisher.check_this(params[:publisher_name])
@category = Category.check_this(params[:category_name])
@storage = Storage.check_this(params[:storage_name])
end
That's my code for other models and it worked. How do I add @author .... into book class as arguments.
Emeka