Skip to content

Commit

Permalink
Add LoginWindow and Controller for BettorClient.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanDeveloper committed Jun 9, 2017
1 parent 5342dc0 commit a64d36c
Show file tree
Hide file tree
Showing 61 changed files with 4,232 additions and 47 deletions.
6 changes: 6 additions & 0 deletions LigaManager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LigaManagerServer", "LigaManagerServer\LigaManagerServer.csproj", "{FE7A1F9F-CCFD-4EBB-A312-DDCD772BCD45}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LigaManagerAdminClient", "LigaManagerAdminClient\LigaManagerAdminClient.csproj", "{EEF224FA-9555-49EB-8D2B-FD92957969D4}"
ProjectSection(ProjectDependencies) = postProject
{FE7A1F9F-CCFD-4EBB-A312-DDCD772BCD45} = {FE7A1F9F-CCFD-4EBB-A312-DDCD772BCD45}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LigaManagerBettorClient", "LigaManagerBettorClient\LigaManagerBettorClient.csproj", "{A1E2797A-9FE6-4701-BA16-428044C9033D}"
ProjectSection(ProjectDependencies) = postProject
{FE7A1F9F-CCFD-4EBB-A312-DDCD772BCD45} = {FE7A1F9F-CCFD-4EBB-A312-DDCD772BCD45}
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LigaManagerTest", "LigaManagerTest\LigaManagerTest.csproj", "{8B46C909-3E30-46A6-B31E-FA79A1EF53E2}"
EndProject
Expand Down
2 changes: 2 additions & 0 deletions LigaManager.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/CodeAnnotations/NamespacesWithAnnotations/=LigaManagerBettorClient_002EAnnotations/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
12 changes: 12 additions & 0 deletions LigaManagerAdminClient/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,16 @@
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IAdminClientService" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost/LigaManagerServer/AdminClientService/"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAdminClientService"
contract="AdminClientService.IAdminClientService" name="BasicHttpBinding_IAdminClientService" />
</client>
</system.serviceModel>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Bet" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>LigaManagerAdminClient.AdminClientService.Bet, Connected Services.AdminClientService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is automatically generated by Visual Studio .Net. It is
used to store generic object data source configuration information.
Renaming the file extension or editing the content of this file may
cause the file to be unrecognizable by the program.
-->
<GenericObjectDataSource DisplayName="Match" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<TypeInfo>LigaManagerAdminClient.AdminClientService.Match, Connected Services.AdminClientService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
</GenericObjectDataSource>
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/LigaManagerServer.Models" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/LigaManagerServer.Models" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="Season">
<xs:complexContent mixed="false">
<xs:extension base="tns:ModelBase">
<xs:sequence>
<xs:element minOccurs="0" name="Description" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Sequence" type="xs:int" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="Season" nillable="true" type="tns:Season" />
<xs:complexType name="ModelBase">
<xs:sequence>
<xs:element minOccurs="0" name="Id" type="xs:int" />
</xs:sequence>
</xs:complexType>
<xs:element name="ModelBase" nillable="true" type="tns:ModelBase" />
<xs:complexType name="ArrayOfMatch">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Match" nillable="true" type="tns:Match" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfMatch" nillable="true" type="tns:ArrayOfMatch" />
<xs:complexType name="Match">
<xs:complexContent mixed="false">
<xs:extension base="tns:ModelBase">
<xs:sequence>
<xs:element minOccurs="0" name="AwayTeam" nillable="true" type="tns:Team" />
<xs:element minOccurs="0" name="AwayTeamScore" type="xs:int" />
<xs:element minOccurs="0" name="DateTime" type="xs:dateTime" />
<xs:element minOccurs="0" name="HomeTeam" nillable="true" type="tns:Team" />
<xs:element minOccurs="0" name="HomeTeamScore" type="xs:int" />
<xs:element minOccurs="0" name="MatchDay" type="xs:int" />
<xs:element minOccurs="0" name="Season" nillable="true" type="tns:Season" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="Match" nillable="true" type="tns:Match" />
<xs:complexType name="Team">
<xs:complexContent mixed="false">
<xs:extension base="tns:ModelBase">
<xs:sequence>
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="Team" nillable="true" type="tns:Team" />
<xs:complexType name="Bettor">
<xs:complexContent mixed="false">
<xs:extension base="tns:ModelBase">
<xs:sequence>
<xs:element minOccurs="0" name="Firstname" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Lastname" nillable="true" type="xs:string" />
<xs:element minOccurs="0" name="Nickname" nillable="true" type="xs:string" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="Bettor" nillable="true" type="tns:Bettor" />
<xs:complexType name="ArrayOfBet">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Bet" nillable="true" type="tns:Bet" />
</xs:sequence>
</xs:complexType>
<xs:element name="ArrayOfBet" nillable="true" type="tns:ArrayOfBet" />
<xs:complexType name="Bet">
<xs:complexContent mixed="false">
<xs:extension base="tns:ModelBase">
<xs:sequence>
<xs:element minOccurs="0" name="AwayTeamScore" type="xs:int" />
<xs:element minOccurs="0" name="Bettor" nillable="true" type="tns:Bettor" />
<xs:element minOccurs="0" name="DateTime" type="xs:dateTime" />
<xs:element minOccurs="0" name="HomeTeamScore" type="xs:int" />
<xs:element minOccurs="0" name="Match" nillable="true" type="tns:Match" />
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:element name="Bet" nillable="true" type="tns:Bet" />
</xs:schema>
Loading

0 comments on commit a64d36c

Please sign in to comment.