def delete_disciplinary_note(dn_id):
    """
    It call to SCmS to do a logic deletion of this kind of item in their data store.

    :param dn_id: dn id in data store.
    :return: Nothing in the body. Specific HTTP status code in the header.
    """
    return CRUD.delete(service='scms', resource='disciplinarynote', id=dn_id)
def delete_mark(mark_id):
    """
    It call to SCmS to do a logic deletion of this kind of item in their data store.

    :param mark_id: mark id in data store.
    :return: Nothing in the body. Specific HTTP status code in the header.
    """
    return CRUD.delete(service='scms', resource='mark', id=mark_id)