/// <summary>
 /// Initializes a new instance of the <see cref="DataTypesService"/> class.
 /// </summary>
 /// <param name="db">The database.</param>
 public DataTypesService(IUmbracoDatabaseWrapper db)
 {
     _db = db;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="DataTypesService"/> class.
 /// </summary>
 public DataTypesService()
 {
     _db = new UmbracoDatabaseWrapper();
 }