Zbiór zmian 912

Pokaż
Ignoruj:
Data:
2009-12-01 12:13:57 (16 years ago)
Autor:
alina
Opis:

re #215 implementacja metody Delete

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

Legenda:

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

    r896 r912  
    1313        IQueryable<T> GetTable<T>() where T : class; 
    1414        void Insert<T>(T item) where T : class; 
     15        void Delete<T>(T item) where T : class; 
    1516        IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer); 
    1617        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 
  • trunk/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs

    r896 r912  
    6666        public void Delete(T entity) 
    6767        { 
    68             throw new NotImplementedException(); 
     68            _dataContext.Delete(entity); 
    6969        } 
    7070        public void SubmitChanges()