Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Billing/App.config @ 9577

Last change on this file since 9577 was 9577, checked in by spimming, 11 years ago

#1888:

  • Added dal and service interfaces and implementations
  • Added dbcontext for billing
File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3  <connectionStrings>
4    <add name="BillingContext" connectionString="ADJUST_ME" providerName="System.Data.SqlClient"/>
5  </connectionStrings>
6  <configSections>
7    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
8    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
9  </configSections>
10  <entityFramework>
11    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
12  </entityFramework>
13  <system.serviceModel>
14    <services>
15      <service name="HeuristicLab.Services.Optimization.Billing">
16        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="MexEndpoint" contract="IMetadataExchange" />
17        <endpoint binding="wsHttpBinding" name="WSHttpBinding_IOptimizationBilling" contract="HeuristicLab.Services.Optimization.Billing.Interfaces.IOptimizationBilling" />
18      </service>
19    </services>
20  </system.serviceModel>
21</configuration>
Note: See TracBrowser for help on using the repository browser.