Ejemplo n.º 1
0
 private void MarkEntityAsDeleted(CommentEntityFrameworkModel entity)
 {
     _dbContext.Entry(entity).State = EntityState.Deleted;
 }
Ejemplo n.º 2
0
 private bool EntityIsNull(CommentEntityFrameworkModel entity)
 {
     return(entity == null);
 }