public string ProcessAndReturnId(TextTemplateModifyInputModel modifyInputModel)
        {
            var textTemplateBatch = textTemplateBatchModifyInputModelToTextTemplateBatchMapper.CreateInstance(modifyInputModel);

            textTemplateBatch.CreateDate     = textTemplateBatch.CreateDate ?? DateTime.Now;
            textTemplateBatch.LastModifyDate = DateTime.Now;
            return(textTemplateBatchRepository.SaveAndReturnId(textTemplateBatch));
        }