public void GenerateAndSendMultipleChoice(ViewModel.SenderAndRecieverOnePersonMultipleChoice model)
        {
            var item2 = new GenerateAndSendDataSingleDelegateMultiple(GeneralFunctions.GeneratePdfAndSendToRecipients.GenerateAndSendData);

            item.SingleMultipleChoiceEvent += item2;
            item.SingleMultipleChoiceEvent(model);
            item.SingleMultipleChoiceEvent -= item2;
        }
        public static void GenerateAndSendData(ViewModel.SenderAndRecieverOnePersonMultipleChoice model)
        {
            var stringpath = ITextSharpPdfCreator.GeneratefileForCustomers.GeneratePdfFileForCustomer(ReturnPathString.ReturnUniqueFileName(), model.sender.firstname, model.sender.lastname, model.sender.messagetoshow, model.Recipient1.StoreBackgroundImage, model.Recipient1.StoreMp3, model.Recipient1.StoreFont);

            SmtpMailService.SendCustomerMail.SendMailToCustomer(model.Recipient1.Email, stringpath, model.Recipient1.StoreMp3);
        }