public BodyInfoRepository(BodyInfoContext bodyInfoContext)
 {
     this.dbContext = bodyInfoContext ?? throw new ArgumentNullException(nameof(bodyInfoContext));
 }
 public UserProfileRepository(BodyInfoContext dbContext)
 {
     this.bodyInfoContext = dbContext ?? throw new ArgumentNullException();
 }