/// <summary> /// Deletes the entity given its unique ID. /// </summary> /// /// <param name="userContext"> /// User context. /// </param> /// /// <param name="id"> /// Unique ID. /// </param> /// /// <returns> /// The number of affected rows. /// </returns> public int Delete(IUserContext userContext, long id) { using (var et = new ExecutionTracerService()) using (var db = new ProcessLogCrud(userContext)) { return(db.Delete(id)); } }
/// <summary> /// Deletes the entity from the database. /// </summary> /// /// <param name="userContext"> /// User context. /// </param> /// /// <param name="entity"> /// Entity to delete. /// </param> /// /// <returns> /// The number of affected rows. /// </returns> public int Delete(IUserContext userContext, VahapYigit.Test.Models.ProcessLog entity) { using (var et = new ExecutionTracerService()) using (var db = new ProcessLogCrud(userContext)) { return(db.Delete(entity)); } }