Zbiór zmian 939 dla branches/Emisje/eCard/eCardMVC/Platnosci.Core
- Data:
- 2009-12-08 10:09:39 (16 years ago)
- Lokalizacja:
- branches/Emisje
- Pliki:
-
- 6 zmodyfikowane
-
. (zmodyfikowane) (1 prop)
-
eCard/eCardMVC/Platnosci.Core (zmodyfikowane) (1 prop)
-
eCard/eCardMVC/Platnosci.Core/Interface/IRepository.cs (zmodyfikowane) (1 diff)
-
eCard/eCardMVC/Platnosci.Core/Linq/Payer.cs (zmodyfikowane) (1 diff)
-
eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs (zmodyfikowane) (2 diffs)
-
eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj (zmodyfikowane) (3 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
branches/Emisje
- Property svn:mergeinfo
-
old new 3 3 /branches/ReklamaReorganizacja:568-731 4 4 /tags/BazaReklam_1.1.28:831 5 /trunk:774-893 5 /trunk:774-893,896-936
-
- Property svn:mergeinfo
-
branches/Emisje/eCard/eCardMVC/Platnosci.Core
-
Włąściwość:
svn:ignore set
to
bin
-
Włąściwość:
svn:ignore set
to
-
branches/Emisje/eCard/eCardMVC/Platnosci.Core/Interface/IRepository.cs
r895 r939 40 40 IQueryable<vPlatnosciEcard> FindInvoiceByNipNumber(string nip, string numer); 41 41 42 IQueryable<vPlatnosciEcard> FindInvoiceById(int id);43 44 42 List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury); 45 43 46 IQueryable<PlatnosciEcard> FindPaymentByOrdernumber(int ordernumber);44 int GetOrdernumber(string description, int? idfaktury, DateTime? data); 47 45 } 48 46 } -
branches/Emisje/eCard/eCardMVC/Platnosci.Core/Linq/Payer.cs
r895 r939 11 11 public string LastName { get; set; } 12 12 public int Id_faktury { get; set; } 13 public int status { get; set; }14 13 } 15 14 } -
branches/Emisje/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs
r895 r939 66 66 public void Delete(T entity) 67 67 { 68 throw new NotImplementedException();68 _dataContext.Delete(entity); 69 69 } 70 70 public void SubmitChanges() … … 88 88 return _dataContext.FindInvoiceByNipNumber(nip, numer); 89 89 } 90 public IQueryable<vPlatnosciEcard> FindInvoiceById(int id)91 {92 return _dataContext.FindInvoiceById(id);93 }94 90 public List<PotwierdzeniaEcard> FindItemsByIdFaktury(int idFaktury) 95 91 { 96 92 return _dataContext.FindItemsByIdFaktury(idFaktury); 97 93 } 98 public IQueryable<PlatnosciEcard> FindPaymentByOrdernumber(int ordernumber)94 public int GetOrdernumber(string description, int? idfaktury, DateTime? data) 99 95 { 100 return _dataContext. FindPaymentByOrdernumber(ordernumber);96 return _dataContext.GetOrdernumber(description, idfaktury, data); 101 97 } 102 98 } -
branches/Emisje/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj
r895 r939 35 35 <Reference Include="Elmah, Version=1.1.11517.0, Culture=neutral, processorArchitecture=MSIL"> 36 36 <SpecificVersion>False</SpecificVersion> 37 <HintPath>..\ ..\..\..\Documents and Settings\Administrator\Pulpit\bin\net-3.5\Debug\Elmah.dll</HintPath>37 <HintPath>..\lib\Elmah.dll</HintPath> 38 38 </Reference> 39 39 <Reference Include="System" /> … … 70 70 <Compile Include="Interface\IIdentifiable.cs" /> 71 71 <Compile Include="Interface\IRepository.cs" /> 72 <Compile Include="Interface\ITranslateManager.cs" /> 72 73 <Compile Include="Linq\DataContext1.cs" /> 74 <Compile Include="Linq\Merchant.cs" /> 73 75 <Compile Include="Linq\Payer.cs" /> 74 76 <Compile Include="Linq\Platnosci.cs"> … … 84 86 <Compile Include="Linq\PotwierdzeniaEcard.cs" /> 85 87 <Compile Include="Linq\Repository.cs" /> 88 <Compile Include="Linq\Translation.cs" /> 86 89 <Compile Include="Linq\vPlatnosciEcard.cs" /> 87 90 <Compile Include="Linq\Waluta.cs" />
