* style.css:
* Web.csproj: * Web.config: * Catalog.xml: * Global.asax.cs: * TestBinding.cs: * IProvider.cs: * yavscModel.csproj: * WFManager.cs: * BasketController.cs: * WorkFlowController.cs: * ITCPNpgsqlProvider.cs: * IContentProvider.cs: * WorkFlowProvider.csproj: * NpgsqlContentProvider.cs: * Provider.cs: * ITContentProvider.csproj: * FrontOfficeApiController.cs: * ProviderCollection.cs: * WorkflowConfiguration.cs: * BlogProvidersConfigurationSection.cs: * IITContent.cs: Estimate creation
This commit is contained in:
parent
fa93ce7fee
commit
bba917dcc0
21 changed files with 375 additions and 85 deletions
|
|
@ -4,8 +4,21 @@ using Npgsql;
|
|||
|
||||
namespace ITContentProvider
|
||||
{
|
||||
public class ITCPNpgsqlProvider :NpgsqlContentProvider
|
||||
public class ITCPNpgsqlProvider : NpgsqlContentProvider
|
||||
{
|
||||
/* TODO
|
||||
|
||||
int NewProject(string name, string desc, string ownedId);
|
||||
void AddDevRessource (int prjId, string userName);
|
||||
int NewTask(int projectId, string name, string desc);
|
||||
void SetProjectName(int projectId, string name);
|
||||
void SetProjectDesc(int projectId, string desc);
|
||||
void SetTaskName(int taskId, string name);
|
||||
void SetStartDate(int taskId, DateTime d);
|
||||
void SetEndDate(int taskId, DateTime d);
|
||||
void SetTaskDesc(int taskId, string desc);
|
||||
void NewRelease(int projectId, string Version);
|
||||
*/
|
||||
public ITCPNpgsqlProvider ()
|
||||
{
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>10.0.0</ProductVersion>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{9D7D892E-9B77-4713-892D-C26E1E944119}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
|
|
@ -32,6 +32,7 @@
|
|||
<Reference Include="System" />
|
||||
<Reference Include="Npgsql" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Configuration" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue