public async Task <Response <string> > AddToothInfo(CreateToothInfoRequest request)
        {
            var toothInfo = new ToothInfo
            {
                Id       = Guid.NewGuid().ToString(),
                Position = request.Position,
                Number   = request.Number,
                Name     = request.Name,
                GrowTime = request.GrowTime
            };

            await _unitOfWork.ToothInfoRepository.AddAsync(toothInfo);

            await _unitOfWork.SaveAsync();

            return(new Response <string>(toothInfo.Id, $"Thêm thông tin răng thành công, id: {toothInfo.Id}"));
        }
 public async Task <IActionResult> AddToothInfo(CreateToothInfoRequest request)
 {
     return(Ok(await _toothInfoService.AddToothInfo(request)));
 }