示例#1
0
        public Response DeligateIdea(string name, String ideaId, string assignee, string userComments, string email, string author)
        {
            InviteeList inviteeList = _iIdeaRepository.DeligateIdea(ideaId, assignee, userComments, email, author);

            if (inviteeList.IsSuccess)
            {
                _email = email; _author = author;
                SendNotifications(inviteeList, NotificationType.DeligateIdea, name, userComments, ideaId);
            }
            return(new Response(inviteeList.IsSuccess, inviteeList.Message));
        }