Does aspnetboilerplate provide the ability in the application layer to upload a file and have SWAGGER available to test the upload?
I can do this via MVC but can not get aspnetboilerplate (IApplicationService) to accept a file upload
Does aspnetboilerplate provide the ability in the application layer to upload a file and have SWAGGER available to test the upload?
I can do this via MVC but can not get aspnetboilerplate (IApplicationService) to accept a file upload
There is no way post a file directly to ApplicationService, but the possible way to create an upload action in MVC which uploads the file in a directory and returns a uniqueidentifier, then the uniqueidentifier can be passed to the application service that can find the file in the directory.