Pokaż
Ignoruj:
Data:
2009-11-03 16:06:42 (16 years ago)
Autor:
alina
Opis:

re #215

Pliki:
1 zmodyfikowane

Legenda:

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

    r866 r870  
    44using System.Linq.Expressions; 
    55using System.Text; 
     6using Platnosci.Core.Linq; 
    67 
    78namespace Platnosci.Core.Interface 
     
    1617 
    1718        void Delete(T entity); 
    18  
     19         
    1920        void Update(T entity); 
    2021 
     
    3637 
    3738        IQueryable<T> Find(Expression<Func<T, bool>> expression); 
     39 
     40        IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer); 
     41 
     42        IQueryable<vPlatnosciEcard> FindInvoiceById(int id); 
     43 
     44        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 
    3845    } 
    3946}