Index: Transformers.cs
===================================================================
--- Transformers.cs	(revision 3880)
+++ Transformers.cs	(working copy)
@@ -22,5 +22,16 @@
 		{
 			return new AliasToBeanResultTransformer(target);
 		}
+
+        public static readonly IResultTransformer DistinctRootEntity = new DistinctRootEntityResultTransformer();
+
+        public static IResultTransformer AliasToBeanConstructor(System.Reflection.ConstructorInfo constructor)
+        {
+            return new AliasToBeanConstructorResultTransformer(constructor);
+        }
+
+	    public static readonly IResultTransformer PassThrough = new PassThroughResultTransformer();
+
+	    public static readonly IResultTransformer RootEntity = new RootEntityResultTransformer();
 	}
 }
\ No newline at end of file
