Example #1
0
        public static UicDto FromUic(Uic uic)
        {
            if (uic == null)
            {
                return null;
            }

            return new UicDto(uic);
        }
Example #2
0
 public UicDto(Uic uic)
 {
     key = uic.Key;
     id = uic.Id;
 }