public async Task <object> PostPartsInventory([FromBody] SimpleModel list)
        {
            Parts model    = Newtonsoft.Json.JsonConvert.DeserializeObject <Parts>(list.Name);
            var   response = this.StatusCode((int)(HttpStatusCode.OK), await _service.PartsInventoryUpdateAsync(model));

            _service.Dispose();
            return(response);
        }