public ChoiceImage Create(ChoiceImage choiceImage)
        {
            EChoiceImage eChoiceImage = EChoice(choiceImage);

            eChoiceImage = _iDChoiceImage.Create(eChoiceImage);
            return(Choice(eChoiceImage));
        }
        private ChoiceImage Choice(EChoiceImage eChoiceImage)
        {
            ChoiceImage returnChoiceImage = new ChoiceImage
            {
                ChoiceId      = eChoiceImage.ChoiceId,
                ChoiceImageId = eChoiceImage.ChoiceImageId,

                Url = eChoiceImage.Url
            };

            return(returnChoiceImage);
        }
        private EChoiceImage EChoice(ChoiceImage choiceImage)
        {
            EChoiceImage returnEChoiceImage = new EChoiceImage
            {
                ChoiceId      = choiceImage.ChoiceId,
                ChoiceImageId = choiceImage.ChoiceImageId,

                Url = choiceImage.Url
            };

            return(returnEChoiceImage);
        }