public ILengthFactory CreateLengthFactory()
        {
            ILengthFactory factory = null;

            try
            {
                factory = new LengthFactory();
            }
            catch (Exception exception)
            {
                this.Log.Error(
                    exception.Message,
                    exception);
            }

            return(factory);
        }
Exemple #2
0
 public static bool MyCompare2(LengthFactory.Length m, LengthFactory.Length m2)
 {
     return m == m2;
 }