internal static CoriaMap CreateCoriaMap(CoriaMap coriaMap)
 {
     try
     {
         return(coriaMap.toCoriaMap(CreateMap(coriaMap.toMap(coriaMap))));
     }
     catch (Exception ex)
     {
         string error = ex.InnerException.Message;
         InternalApi.Utility.CoriaException csEx = new Utility.CoriaException(CSExceptionType.LoggableException, ex.InnerException.Message, null);
         csEx.Log();
         return(coriaMap);
     }
 }
 internal static Map ToMap(CoriaMap fromCoriaMap, Map toMap)
 {
     return((Map)ConvertFromPropertiesTo(fromCoriaMap, toMap));
 }
 internal static CoriaMap ToCoriaMap(Map fromMap, CoriaMap toCoriaMap)
 {
     return((CoriaMap)ConvertFromPropertiesTo(fromMap, toCoriaMap));
 }