Exemplo n.º 1
0
        /// <summary>
        /// Deletes a User's Noticepost relationship
        /// </summary>
        /// <param name="id">The relationship to be deleted</param>
        /// <returns>1 if success</returns>
        public async Task <int> DeleteAsync(UserNoticePost relationship)
        {
            UserNoticePost noticeBoard = await DbContext.UserNoticePostRelationship.FindAsync(relationship.UserId, relationship.NoticeId);

            DbContext.UserNoticePostRelationship.Remove(noticeBoard);
            return(await DbContext.SaveChangesAsync());
        }
Exemplo n.º 2
0
 /// <summary>
 /// Adds a User's noticepost relationship
 /// </summary>
 /// <param name="notice">The relationship to be added</param>
 /// <returns>1 if success</returns>
 public async Task <int> AddAsync(UserNoticePost relationship)
 {
     DbContext.UserNoticePostRelationship.Add(relationship);
     return(await DbContext.SaveChangesAsync());
 }