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:
6 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/Interface/IRepository.cs

    r895 r939  
    4040        IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer); 
    4141 
    42         IQueryable<vPlatnosciEcard> FindInvoiceById(int id); 
    43  
    4442        List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 
    4543 
    46         IQueryable<PlatnosciEcard> FindPaymentByOrdernumber(int ordernumber); 
     44        int GetOrdernumber(string description, int? idfaktury, DateTime? data); 
    4745    } 
    4846} 
  • branches/Emisje/eCard/eCardMVC/Platnosci.Core/Linq/Payer.cs

    r895 r939  
    1111        public string LastName { get; set; } 
    1212        public int Id_faktury { get; set; } 
    13         public int status { get; set; } 
    1413    } 
    1514} 
  • 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    } 
  • branches/Emisje/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj

    r895 r939  
    3535    <Reference Include="Elmah, Version=1.1.11517.0, Culture=neutral, processorArchitecture=MSIL"> 
    3636      <SpecificVersion>False</SpecificVersion> 
    37       <HintPath>..\..\..\..\Documents and Settings\Administrator\Pulpit\bin\net-3.5\Debug\Elmah.dll</HintPath> 
     37      <HintPath>..\lib\Elmah.dll</HintPath> 
    3838    </Reference> 
    3939    <Reference Include="System" /> 
     
    7070    <Compile Include="Interface\IIdentifiable.cs" /> 
    7171    <Compile Include="Interface\IRepository.cs" /> 
     72    <Compile Include="Interface\ITranslateManager.cs" /> 
    7273    <Compile Include="Linq\DataContext1.cs" /> 
     74    <Compile Include="Linq\Merchant.cs" /> 
    7375    <Compile Include="Linq\Payer.cs" /> 
    7476    <Compile Include="Linq\Platnosci.cs"> 
     
    8486    <Compile Include="Linq\PotwierdzeniaEcard.cs" /> 
    8587    <Compile Include="Linq\Repository.cs" /> 
     88    <Compile Include="Linq\Translation.cs" /> 
    8689    <Compile Include="Linq\vPlatnosciEcard.cs" /> 
    8790    <Compile Include="Linq\Waluta.cs" />