Ejemplo n.º 1
0
 public long AddProfileActionComment(ProfileActionComment addComment)
 {
     ProfileAction profileAction = context
        .ProfileActions
        .Where(m => m.ProfileActionId == addComment.ProfileActionId)
        .FirstOrDefault();
     if (profileAction != null)
     {
         context.ProfileActionsComments.Add(addComment);
         context.SaveChanges();
     }
     return addComment.ProfileActionCommentId;
 }
Ejemplo n.º 2
0
        public ActionResult AddComment(ProfileActionComment value)
        {
            LoadCommentResult result = new LoadCommentResult();
            result.Profile = ProfileRepository.GetProfile(user.ProfileId);
            result.Action = ProfileRepository.GetProfileAction((long)value.ProfileActionId);

            if (user.ProfileId == value.ProfileId)
            {
                value.Date = DateTime.Now;
                long id = ProfileRepository.AddProfileActionComment(value);
                result.ProfileActionComment = ProfileRepository.GetProfileActionsComment(id);
            }
            return PartialView("LoadComment", result);
        }
Ejemplo n.º 3
0
 public void RemoveComment(ProfileActionComment value)
 {
     ProfileActionComment check = ProfileRepository.GetProfileActionsComment(value.ProfileActionCommentId);
     if (check != null)
     {
         ProfileAction check2 = ProfileRepository.GetProfileAction((long)check.ProfileActionId);
         if ((user.ProfileId == check.ProfileId) || (user.ProfileId == check2.ProfileId))
         {
             ProfileRepository.RemoveProfileActionComment(value.ProfileActionCommentId);
         }
     }
 }