Exemplo n.º 1
0
        public Contact Update(Contact contactToUpdate)
        {
            var originalContact = Get(contactToUpdate.Id);

            _entities.ApplyCurrentValues(originalContact.EntityKey.EntitySetName, contactToUpdate);
            _entities.SaveChanges();
            return(contactToUpdate);
        }
Exemplo n.º 2
0
        public Task Update(Task taskToUpdate)
        {
            var originalTask = Get(taskToUpdate.Id);

            _entities.ApplyCurrentValues(originalTask.EntityKey.EntitySetName, taskToUpdate);
            _entities.SaveChanges();
            return(taskToUpdate);
        }
Exemplo n.º 3
0
        public Opportunity Update(Opportunity opportunityToUpdate)
        {
            var originalOpportunity = Get(opportunityToUpdate.Id);

            _entities.ApplyCurrentValues(originalOpportunity.EntityKey.EntitySetName, opportunityToUpdate);
            _entities.SaveChanges();
            return(opportunityToUpdate);
        }
        public IndustrialSector Update(IndustrialSector sectorToUpdate)
        {
            var originalIndustrialSector = Get(sectorToUpdate.Id);

            _entities.ApplyCurrentValues(originalIndustrialSector.EntityKey.EntitySetName, sectorToUpdate);
            _entities.SaveChanges();
            return(sectorToUpdate);
        }
Exemplo n.º 5
0
        public Account Update(Account accountToUpdate)
        {
            var originalAccount = Get(accountToUpdate.Id);

            _entities.ApplyCurrentValues(originalAccount.EntityKey.EntitySetName, accountToUpdate);
            _entities.SaveChanges();
            return(accountToUpdate);
        }
Exemplo n.º 6
0
        public User Update(User userToUpdate)
        {
            var originalUser = Get(userToUpdate.Id);

            _entities.ApplyCurrentValues(originalUser.EntityKey.EntitySetName, userToUpdate);
            _entities.SaveChanges();
            return(userToUpdate);
        }