Beispiel #1
0
        public async Task <IActionResult> Edit(EditBookInputModel input)
        {
            if (!this.ModelState.IsValid)
            {
                return(this.View(input));
            }

            string imgUrl  = null;
            string fileUrl = null;

            if (input.FileName != null)
            {
                fileUrl = await this.cloudinaryService.UploadAsync(
                    input.FileName,
                    input.Title,
                    GlobalConstants.CloudFolderForBooksContent);
            }

            if (input.Img != null)
            {
                imgUrl = await this.cloudinaryService.UploadAsync(
                    input.Img,
                    input.Title,
                    GlobalConstants.CloudFolderForBooks);
            }

            await this.bookService
            .EditAsync(input.Id, input.Title, input.ShortContent, imgUrl, fileUrl, input.Pages, input.CategoryId, input.AutorId);

            return(this.RedirectToAction(nameof(this.All)));
        }
Beispiel #2
0
        public IActionResult Edit(int id)
        {
            var categories = this.categoryService
                             .GetAllCategories <CategoriesDropDownViewModel>();

            var authors = this.authorService
                          .GetAuthors <AuthorsDropDownViewModel>();

            var dto   = this.bookService.GetById(id);
            var model = new EditBookInputModel
            {
                Id           = dto.Id,
                Title        = dto.Title,
                ShortContent = dto.ShortContent,
                Pages        = dto.Pages,
                AutorId      = dto.AutorId,
                CategoryId   = dto.CategoryId,
                Categories   = categories,
                Authors      = authors,
            };

            return(this.View(model));
        }