Example #1
0
        public IActionResult CreateClothesSize([FromBody] ClothesSize clothesSize)
        {
            try
            {
                if (clothesSize.IsEntityNull())
                {
                    return(BadRequest("ClothesSize object is null"));
                }

                if (!clothesSize.IsEntityEmpty())
                {
                    return(BadRequest("For create, the Id must be null"));
                }

                if (!ModelState.IsValid)
                {
                    return(BadRequest("Invalid model object"));
                }

                _clothesSizeService.CreateClothesSize(clothesSize);
                _clothesSizeService.Save();

                return(CreatedAtRoute("ClothesSizeById", new { id = clothesSize.Id.Value }, clothesSize));
            }
            catch (Exception ex)
            {
                _logger.Error(ex, "Error in call : api/clothesSize/CreateClothesSize", clothesSize);
                return(StatusCode(StatusCodes.Status500InternalServerError, "Internal server error"));
            }
        }
Example #2
0
        public IActionResult UpdateClothesSize(int id, [FromBody] ClothesSize clothesSize)
        {
            try
            {
                if (clothesSize.IsEntityNull())
                {
                    return(BadRequest("ClothesSize object is null"));
                }

                if (!ModelState.IsValid)
                {
                    return(BadRequest("Invalid model object"));
                }

                ClothesSize dbClothesSize = _clothesSizeService.GetClothesSizeById(id);
                if (dbClothesSize.IsEntityNull())
                {
                    _logger.Error($"ClothesSize with id: {id} not found in db");
                    return(NotFound());
                }

                _clothesSizeService.UpdateClothesSize(dbClothesSize, clothesSize);
                _clothesSizeService.Save();

                return(NoContent());
            }
            catch (Exception ex)
            {
                _logger.Error(ex, "Error in call : api/clothesSize/UpdateClothesSize/" + id, clothesSize);
                return(StatusCode(StatusCodes.Status500InternalServerError, "Internal server error"));
            }
        }
Example #3
0
        public IActionResult DeleteClothesSize(int id)
        {
            try
            {
                ClothesSize clothesSize = _clothesSizeService.GetClothesSizeById(id);
                if (clothesSize.IsEntityNull())
                {
                    _logger.Error($"ClothesSize with id: {id} not found in db");
                    return(NotFound());
                }

                _clothesSizeService.DeleteClothesSize(clothesSize);
                _clothesSizeService.Save();

                return(NoContent());
            }
            catch (Exception ex)
            {
                _logger.Error(ex, "Error in call : api/clothesSize/DeleteClothesSize/" + id);
                return(StatusCode(StatusCodes.Status500InternalServerError, "Internal server error"));
            }
        }