public void Update(TestEntity entity)
 {
     testRepository.Update(entity.ToDalTest());
 }
 public void Create(TestEntity entity)
 {
     testRepository.Create(entity.ToDalTest());
 }