public async Task <IActionResult> GetBomList(string name)
        {
            var bomList = await _repo.GetBomList(name);

            return(Ok(bomList));
        }