/// <summary>
 /// Get the DTOExample from DB.
 /// </summary>
 /// <param name="example">DTOExample to get from db</param>
 /// <returns>A DTOExample </returns>
 public DTOExample getDTOExample(DTOExample example)
 {
     using (dbContext)
     {
         return(exampleRepository.getDTOExample(dbContext, example));
     }
 }