Ejemplo n.º 1
0
        public async Task <IActionResult> Update(AnimalModel model)
        {
            var animal = await _bll.Animals.FindAsync(model.Id);

            if (animal == null)
            {
                return(NotFound());
            }

            animal.Name.SetTranslation(model.Name);
            animal.Description.SetTranslation(model.Description);
            animal.BinomialName         = model.BinomialName;
            animal.ConservationStatusId = model.ConservationStatusId;

            animal.BinomialName = model.BinomialName;

            var mapSegment = await _bll.MapSegments.FindAsync(model.MapSegment.Id);

            if (mapSegment != null)
            {
                //animal.MapSegment = mapSegment;
                mapSegment.Animal = animal;
                _bll.MapSegments.Update(mapSegment);
            }

            _bll.Animals.Update(animal);
            await _bll.SaveChangesAsync();

            return(RedirectToAction(nameof(Details), new { id = model.Id }));
        }
Ejemplo n.º 2
0
        public async Task <IActionResult> AddAnimal(AnimalModel model)
        {
            if (ModelState.IsValid)
            {
                var animal = new Animal();
                animal.Name        = new MultiLangString(model.Name);
                animal.Description = new MultiLangString("");
                animal.Created     = DateTime.Now;

                await _bll.Animals.AddAsync(animal);

                await _bll.SaveChangesAsync();

                return(RedirectToAction(nameof(Details), new { id = animal.Id }));
            }

            return(View(nameof(Add)));
        }
Ejemplo n.º 3
0
        public async Task <IActionResult> Details(Guid id)
        {
            var animal = await _bll.Animals.FindAsync(id);

            if (animal == null)
            {
                return(NotFound());
            }

            var model = new AnimalModel();

            model.Id                   = animal.Id;
            model.Name                 = animal.Name;
            model.Description          = animal.Description;
            model.BinomialName         = animal.BinomialName;
            model.ConservationStatusId = animal.ConservationStatusId;

            if (animal.MapSegment != null)
            {
                model.MapSegment = new MapSegmentModel()
                {
                    Id   = animal.MapSegment.Id,
                    Name = animal.MapSegment.Name
                };
            }
            else
            {
                model.MapSegment = new MapSegmentModel();
            }

            model.ConservationStatuses = (await _bll.ConservationStatuses.AllAsync()).Select(
                conservationStatus => new SelectListItem()
            {
                Selected = conservationStatus.Id == animal.ConservationStatusId,
                Value    = conservationStatus.Id.ToString(),
                Text     = conservationStatus.Name
            }
                ).ToList();

            var featuredImage = await _bll.Medias.FindAsync(animal.FeaturedImgId);

            if (featuredImage != null)
            {
                model.FeaturedImage = new ImageModel()
                {
                    Id   = featuredImage.Id,
                    Name = featuredImage.Name,
                    Url  = featuredImage.Url
                };
            }

            model.MapSegmentsSelectListItems = new List <SelectListItem>();

            model.MapSegmentsSelectListItems = (await _bll.MapSegments.AllAsync()).Select(
                mapSegment => new SelectListItem()
            {
                Selected = animal.MapSegment != null ? mapSegment.Id == animal.MapSegment.Id : false,
                Value    = mapSegment.Id.ToString(),
                Text     = mapSegment.Name
            }
                ).ToList();

            return(View(model));
        }