public void Update(ProcessPerspective process) { this.processPerspectiveRepository.Update(process); this.unitOfWork.Commit(); }
public void Delete(ProcessPerspective process) { this.processPerspectiveRepository.Delete(process); this.unitOfWork.Commit(); }
public void Add(ProcessPerspective process) { this.processPerspectiveRepository.Add(process); this.unitOfWork.Commit(); }