Zbiór zmian 867 dla trunk/eCard
- Data:
- 2009-10-30 12:05:28 (16 years ago)
- Lokalizacja:
- trunk/eCard/eCardMVC
- Pliki:
-
- 3 dodane
- 8 zmodyfikowane
-
Platnosci.Core/Interface/IIdentifiable.cs (zmodyfikowane) (1 diff)
-
Platnosci.Core/Linq/PlatnosciEcard.cs (zmodyfikowane) (1 diff)
-
Platnosci.Core/Linq/Repository.cs (zmodyfikowane) (2 diffs)
-
Platnosci.Core/Linq/vPlatnosciEcard.cs (zmodyfikowane) (1 diff)
-
Platnosci/Helpers/helper.cs (dodane)
-
Platnosci/Images/admoto/logo.gif (dodane)
-
Platnosci/Images/truck/logo.gif (dodane)
-
Platnosci/Platnosci.Web.csproj (zmodyfikowane) (2 diffs)
-
Platnosci/Platnosci.Web.csproj.user (zmodyfikowane) (1 diff)
-
Platnosci/Views/Shared/Site.Master (zmodyfikowane) (1 diff)
-
Platnosci/Web.config (zmodyfikowane) (1 diff)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/eCard/eCardMVC/Platnosci.Core/Interface/IIdentifiable.cs
r866 r867 8 8 public interface IIdentifiable 9 9 { 10 int I D_faktury { get; set; }10 int Id { get; } 11 11 } 12 12 } -
trunk/eCard/eCardMVC/Platnosci.Core/Linq/PlatnosciEcard.cs
r866 r867 5 5 namespace Platnosci.Core.Linq 6 6 { 7 public partial class PlatnosciEcard 7 public partial class PlatnosciEcard : IIdentifiable 8 8 { 9 public int Id 10 { 11 get 12 { 13 return this.ORDERNUMBER; 14 } 15 } 16 9 17 } 10 18 } -
trunk/eCard/eCardMVC/Platnosci.Core/Linq/Repository.cs
r866 r867 30 30 public T FindOne(int id) 31 31 { 32 return FindOne(t => t.I D_faktury== id);32 return FindOne(t => t.Id == id); 33 33 } 34 34 public T FindOne(Expression<Func<T, bool>> expression) … … 83 83 public IQueryable<T> Find(int id) 84 84 { 85 return _dataContext.GetTable<T>().Where(t => t.I D_faktury== id);85 return _dataContext.GetTable<T>().Where(t => t.Id == id); 86 86 } 87 87 public IQueryable<T> Find(Expression<Func<T, bool>> expression) -
trunk/eCard/eCardMVC/Platnosci.Core/Linq/vPlatnosciEcard.cs
r866 r867 14 14 } 15 15 } 16 17 public int Id 18 { 19 get { return this.ID_faktury; } 20 } 16 21 } 17 22 } -
trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj
r866 r867 100 100 <DependentUpon>Global.asax</DependentUpon> 101 101 </Compile> 102 <Compile Include="Helpers\ UrlImage.cs" />102 <Compile Include="Helpers\helper.cs" /> 103 103 <Compile Include="Models\FunkcjePlatnosci.cs" /> 104 104 <Compile Include="Models\ErrorViewData.cs" /> … … 152 152 <Content Include="Images\it.gif" /> 153 153 <Content Include="Images\pl.gif" /> 154 <Content Include="Images\truck\logo TE.gif" />154 <Content Include="Images\truck\logo.gif" /> 155 155 </ItemGroup> 156 156 <ItemGroup> 157 157 <Content Include="Images\admoto\favicon.ico" /> 158 <Content Include="Images\admoto\logo NG_0.gif" />158 <Content Include="Images\admoto\logo.gif" /> 159 159 <Content Include="Images\admoto\tlo1.gif" /> 160 160 <Content Include="Images\admoto\tlo2.gif" /> -
trunk/eCard/eCardMVC/Platnosci/Platnosci.Web.csproj.user
r866 r867 1 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 2 <PropertyGroup> 3 <ProjectView>ProjectFiles</ProjectView> 4 </PropertyGroup> 2 5 <ProjectExtensions> 3 6 <VisualStudio> -
trunk/eCard/eCardMVC/Platnosci/Views/Shared/Site.Master
r866 r867 5 5 <head runat="server"> 6 6 <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title> 7 <link href="<%=Url.Content("~/Content/Site.css")%>" rel="stylesheet" type="text/css" /> 8 <% if (ConfigurationManager.AppSettings["Css"] == "truck"){%> 9 <link href="../../Content/truck.css" rel="stylesheet" type="text/css" /> 10 <%}else if (ConfigurationManager.AppSettings["Css"] == "admoto"){%> 11 <link href="../../Content/admoto.css" rel="stylesheet" type="text/css" /> 12 <link rel="shortcut icon" href="../../Images/admoto/favicon.ico" /> 13 <%}%> 7 <%=Html.MainCss("Site.css")%> 8 <%=Html.AddCssToPortal()%> 9 <%=Html.Favicon()%> 14 10 </head> 15 11 <body> 16 12 <table class="page" cellpadding="0" cellspacing="0"> 17 13 <tr class="black"> 18 19 <% if (ConfigurationManager.AppSettings["Css"] == "truck"){%> 20 <td class="logo"><img alt="logo" src="../../Images/truck/logoTE.gif" /></td> 21 <%} 22 else if (ConfigurationManager.AppSettings["Css"] == "admoto") 23 {%> 24 <td class="logo" rowspan="2"> 25 <img alt="logo" src="../../Images/admoto/logoNG_0.gif" /> 26 <%if (ConfigurationManager.AppSettings["Css"] == "admoto"){%> 27 <asp:Label ID="Label1" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label> 28 <%}%> 29 </td> 30 <%}else{%> 31 <td></td> 32 <%}%> 33 <%string querystring = Request.QueryString.ToString();%> 14 <%=Html.Logo()%> 15 <%string querystring = Request.QueryString.ToString();%> 34 16 <td id="flagi"> 35 <%=Html.ImageLink(" /Images/pl.gif","pl",querystring)%>36 <%=Html.ImageLink(" /Images/gb.gif","en",querystring)%>37 <%=Html.ImageLink(" /Images/de.gif","de",querystring)%>38 <%=Html.ImageLink(" /Images/it.gif","it",querystring)%>39 <%=Html.ImageLink(" /Images/fr.gif","fr",querystring)%>17 <%=Html.ImageLink("pl.gif","pl",querystring)%> 18 <%=Html.ImageLink("gb.gif","en",querystring)%> 19 <%=Html.ImageLink("de.gif","de",querystring)%> 20 <%=Html.ImageLink("it.gif","it",querystring)%> 21 <%=Html.ImageLink("fr.gif","fr",querystring)%> 40 22 </td> 41 23 </tr> -
trunk/eCard/eCardMVC/Platnosci/Web.config
r866 r867 29 29 <add key="Css" value="truck"/> 30 30 <add key="StatusLink" value="http://platnosci.admoto.pl/info.aspx"/> 31 <add key="Css" value="admoto"/> 31 <add key="Css" value="admoto"/> 32 32 33 </appSettings> 33 34 <connectionStrings>
