public void Update(ProcessPerspective process)
        {
            this.processPerspectiveRepository.Update(process);

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

            this.unitOfWork.Commit();
        }