public Task <bool> UpdateAsync(IBodyPartType bodyPartType)
 {
     return(BodyPartTypeRepository.UpdateAsync(bodyPartType));
 }
 public Task <IBodyPartType> CreateAsync(IBodyPartType bodyPartType)
 {
     return(BodyPartTypeRepository.CreateAsync(bodyPartType));
 }