Browse Source

Bumped off the GetSendingApplicationAt signature

Gareth O'Brien 11 years ago
parent
commit
b804434ef3

+ 7 - 1
Foghorn.Test/Foghorn.Test.csproj

@@ -35,7 +35,10 @@
       <HintPath>..\Foghorn.Core\bin\Debug\EntityFramework.dll</HintPath>
     </Reference>
     <Reference Include="Excel">
-      <HintPath>..\Foghorn.CustomAction\bin\Debug\Excel.dll</HintPath>
+      <HintPath>lib\Excel.dll</HintPath>
+    </Reference>
+    <Reference Include="ICSharpCode.SharpZipLib">
+      <HintPath>lib\ICSharpCode.SharpZipLib.dll</HintPath>
     </Reference>
     <Reference Include="NLog, Version=2.0.0.0, Culture=neutral, PublicKeyToken=5120e14c03d0593c, processorArchitecture=MSIL">
       <SpecificVersion>False</SpecificVersion>
@@ -83,6 +86,9 @@
     <Content Include="NotificationIcons\OrderShipped.png" />
     <Content Include="NotificationIcons\TestNotification0.png" />
   </ItemGroup>
+  <ItemGroup>
+    <WCFMetadata Include="Service References\" />
+  </ItemGroup>
   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
   <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
        Other similar extension points exist, see Microsoft.Common.targets.

+ 0 - 5
Foghorn.WcfService/FoghornService.cs

@@ -165,11 +165,6 @@ namespace Foghorn.WcfService
                            .ToDto();
         }
 
-        public SendingApplicationDto GetSendingApplicationAt(int sendingApplicationIndex)
-        {
-            return DataContext.SendingApplications.AsEnumerable().ElementAt(sendingApplicationIndex).ToDto();
-        }
-
         #endregion
     }
 }

+ 0 - 3
Foghorn.WcfService/IFoghornService.cs

@@ -47,8 +47,5 @@ namespace Foghorn.WcfService
 
         [OperationContract]
         SendingApplicationDto GetSendingApplication(string sendingApplicationName);
-
-        [OperationContract]
-        SendingApplicationDto GetSendingApplicationAt(int sendingApplicationIndex);
     }
 }