Esempio n. 1
0
        public void Edit(ResumeViewModel command)
        {
            var selecteditem = _irepository.GetByID(command.Id);

            selecteditem.Edit(command.Priority, command.FromYear, command.ToYear, command.Title, command.Description);
            _irepository.SaveChanges();
        }