Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/28/10 23:11:21 (13 years ago)
Author:
jwolfing
Message:

#1196 Added TestForm and modified the AuthenticationClientClass

Location:
branches/UserManagement
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • branches/UserManagement/HeuristicLab.Services.Authentication.ServiceClients/AuthenticationClient.cs

    r4979 r4983  
    4747        {
    4848            applications = CallService<Application[]>(s => s.GetApplications()).OrderBy(x => x.Name);
     49            users = CallService<User[]>(s => s.GetAllUsers()).OrderBy(x => x.Name);
     50            roles = CallService<Role[]>(s => s.GetAllRoles()).OrderBy(x => x.Name);
    4951        }
    5052
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/HeuristicLab.Services.Authentication.TestClient2.csproj

    r4962 r4983  
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{EB40C828-D545-4DFE-9CE6-108FB03C6912}</ProjectGuid>
    9     <OutputType>Exe</OutputType>
     9    <OutputType>WinExe</OutputType>
    1010    <AppDesignerFolder>Properties</AppDesignerFolder>
    1111    <RootNamespace>HeuristicLab.Services.Authentication.TestClient2</RootNamespace>
     
    3434    <WarningLevel>4</WarningLevel>
    3535  </PropertyGroup>
     36  <PropertyGroup>
     37    <StartupObject />
     38  </PropertyGroup>
    3639  <ItemGroup>
    3740    <Reference Include="System" />
     
    4851  </ItemGroup>
    4952  <ItemGroup>
     53    <Compile Include="Form1.cs">
     54      <SubType>Form</SubType>
     55    </Compile>
     56    <Compile Include="Form1.Designer.cs">
     57      <DependentUpon>Form1.cs</DependentUpon>
     58    </Compile>
    5059    <Compile Include="Program.cs" />
    5160    <Compile Include="Properties\AssemblyInfo.cs" />
     
    7281  </ItemGroup>
    7382  <ItemGroup>
     83    <EmbeddedResource Include="Form1.resx">
     84      <DependentUpon>Form1.cs</DependentUpon>
     85    </EmbeddedResource>
    7486    <EmbeddedResource Include="UserManagement.resx">
    7587      <DependentUpon>UserManagement.cs</DependentUpon>
  • branches/UserManagement/HeuristicLab.Services.Authentication.TestClient2/Program.cs

    r4979 r4983  
    2626              Console.WriteLine(u.Name);
    2727            }
    28             Console.ReadLine();
     28            Console.ReadLine(); 
    2929
    30             //System.Windows.Forms.Application.Run(new UserManagement());
     30            System.Windows.Forms.Application.Run(new Form1());
    3131        }
    3232    }
Note: See TracChangeset for help on using the changeset viewer.