-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add LoginWindow and Controller for BettorClient.
- Loading branch information
1 parent
5342dc0
commit a64d36c
Showing
61 changed files
with
4,232 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...cted Services/AdminClientService/LigaManagerAdminClient.AdminClientService.Bet.datasource
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
10 changes: 10 additions & 0 deletions
10
...ed Services/AdminClientService/LigaManagerAdminClient.AdminClientService.Match.datasource
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
85 changes: 85 additions & 0 deletions
85
LigaManagerAdminClient/Connected Services/AdminClientService/LigaManagerServer.Models.xsd
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.