Esempio n. 1
0
        public static bool IsNew <T>(this IIdentifiable <T> source)
        {
            source.ThrowIfNull("source");

            return(Equals(source.Id, default(T)));
        }