Pokaż
Ignoruj:
Data:
2009-11-24 12:21:39 (16 years ago)
Autor:
sylwek
Opis:

Re #195 merged with latest trunk

Lokalizacja:
branches/Emisje
Pliki:
2 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • branches/Emisje

    • Property svn:mergeinfo
      •  

        old new  
         1/branches/Abonament:701-884 
        12/branches/AutoShopper:815-818 
        23/branches/ReklamaReorganizacja:568-731 
        34/tags/BazaReklam_1.1.28:831 
        4 /trunk:774-868 
         5/trunk:774-893 
  • branches/Emisje/eCard/eCardMVC/Platnosci.Core/Interface/IRepository.cs

    r866 r895  
    44using System.Linq.Expressions; 
    55using System.Text; 
     6using Platnosci.Core.Linq; 
    67 
    78namespace Platnosci.Core.Interface 
     
    1617 
    1718        void Delete(T entity); 
    18  
    19         void Update(T entity); 
     19         
     20        void SubmitChanges(); 
    2021 
    2122        T FindOne(int id); 
     
    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); 
     45 
     46        IQueryable<PlatnosciEcard> FindPaymentByOrdernumber(int ordernumber); 
    3847    } 
    3948}