public void Delete(ProcessHistory item) { this.ThrowIfDisposed(_disposed); item.ThrowIfNull(); Entities.Remove(item); SaveChanges(); }
public void Create(ProcessHistory item) { this.ThrowIfDisposed(_disposed); item.ThrowIfNull(); Entities.Add(item); SaveChanges(); }