
* 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
41 lines
857 B
C#
41 lines
857 B
C#
using System;
|
|
using System.Configuration;
|
|
|
|
namespace WorkFlowProvider.Configuration
|
|
{
|
|
public class WFProvider:ConfigurationElement
|
|
{
|
|
[ConfigurationProperty("name", IsKey=true, IsRequired=true)]
|
|
public string Name {
|
|
get {
|
|
return (string) base ["name"];
|
|
}
|
|
set { base ["name"] = value; }
|
|
}
|
|
|
|
[ConfigurationProperty("type")]
|
|
public string Type {
|
|
get { return (string) this ["type"]; }
|
|
set {
|
|
this ["type"] = value;
|
|
}
|
|
}
|
|
[ConfigurationProperty("applicationName")]
|
|
public string ApplicationName {
|
|
get {
|
|
return (string)this ["applicationName"];
|
|
}
|
|
set {
|
|
this ["applicationName"] = value;
|
|
}
|
|
}
|
|
|
|
[ConfigurationProperty("connectionStringName")]
|
|
public string ConnectionStringName {
|
|
get { return (string)this ["connectionStringName"]; }
|
|
set { this ["connectionStringName"] = value; }
|
|
}
|
|
}
|
|
}
|
|
|