Example #1
0
        public static string ListOutKeyProperties(string prefix, ISpecificationModel model)
        {
            string propertiesListed = string.Empty;

            if (model != null && model.Key != null)
            {
                propertiesListed = TestingHelper.ListOutKeyProperties(prefix, model.Key);
            }

            return(propertiesListed);
        }
Example #2
0
 public static string ListOutKeyProperties(ISpecificationModel model)
 {
     return(TestingHelper.ListOutKeyProperties(null, model));
 }
Example #3
0
 public static string ListOutKeyProperties(ISpecificationKey key)
 {
     return(TestingHelper.ListOutKeyProperties(string.Empty, key));
 }