Pokaż
Ignoruj:
Data:
2009-12-08 10:09:39 (16 years ago)
Autor:
sylwek
Opis:

re #195 - merged with latest trunk

Lokalizacja:
branches/Emisje
Pliki:
3 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • branches/Emisje

    • Property svn:mergeinfo
      •  

        old new  
        33/branches/ReklamaReorganizacja:568-731 
        44/tags/BazaReklam_1.1.28:831 
        5 /trunk:774-893 
         5/trunk:774-893,896-936 
  • branches/Emisje/eCard/eCardMVC/Platnosci.Core

    • Włąściwość: svn:ignore set to
      bin
  • branches/Emisje/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs

    r895 r939  
    6666        public void Delete(T entity) 
    6767        { 
    68             throw new NotImplementedException(); 
     68            _dataContext.Delete(entity); 
    6969        } 
    7070        public void SubmitChanges() 
     
    8888            return _dataContext.FindInvoiceByNipNumber(nip, numer); 
    8989        } 
    90         public IQueryable<vPlatnosciEcard> FindInvoiceById(int id) 
    91         { 
    92             return _dataContext.FindInvoiceById(id); 
    93         } 
    9490        public List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury) 
    9591        { 
    9692            return _dataContext.FindItemsByIdFaktury(idFaktury); 
    9793        } 
    98         public IQueryable<PlatnosciEcard> FindPaymentByOrdernumber(int ordernumber) 
     94        public int GetOrdernumber(string description, int? idfaktury, DateTime? data) 
    9995        { 
    100             return _dataContext.FindPaymentByOrdernumber(ordernumber); 
     96            return _dataContext.GetOrdernumber(description, idfaktury, data); 
    10197        } 
    10298    }