Pokaż
Ignoruj:
Data:
2009-11-23 16:27:53 (16 years ago)
Autor:
alina
Opis:

re #215

Lokalizacja:
trunk/eCard/eCardMVC/Platnosci.Core
Pliki:
2 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/eCard/eCardMVC/Platnosci.Core/Interface/IRepository.cs

    r877 r888  
    1818        void Delete(T entity); 
    1919         
    20         void Update(T entity); 
     20        void SubmitChanges(); 
    2121 
    2222        T FindOne(int id); 
  • trunk/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs

    r877 r888  
    6666        public void Delete(T entity) 
    6767        { 
    68             _dataContext.Insert(entity); 
     68            throw new NotImplementedException(); 
    6969        } 
    70         public void Update(T entity) 
     70        public void SubmitChanges() 
    7171        { 
    7272            _dataContext.SubmitChanges();