Exemple #1
0
        public PlayerInfoDto(PlayerInfoShortDto info, PlayerLocationDto location)
        {
            Info     = info;
            Location = location;

            if (info == null)
            {
                Info = new PlayerInfoShortDto();
            }

            if (location == null)
            {
                Location = new PlayerLocationDto();
            }
        }
 public PlayerInfoDto()
 {
     Info     = new PlayerInfoShortDto();
     Location = new PlayerLocationDto();
 }
 public PlayerInfoDto(PlayerInfoShortDto info, PlayerLocationDto location)
 {
     Info     = info;
     Location = location;
 }