refactiring, docpage * Yavsc.sln: * Web.csproj: * YavscModel.csproj: * OtherWebException.cs: * ProjectInfo.cs: * IValueProvider.cs: * CalendarApi.cs: * HomeController.cs: * TemplateException.cs: * WorkFlowController.cs: * NpgsqlWorkflow.csproj: * GoogleErrorMessage.cs: * ITCPNpgsqlProvider.cs: * NpgsqlContentProvider.cs: * ITContentProvider.csproj: * FrontOfficeApiController.cs: * NpgsqlContentProvider.csproj: refactoring * App.master: * WebApiConfig.cs: New Web api configuration architecture * SalesCatalog.csproj: * XmlCatalogProvider.cs: using MVC to get the catalog xml filename * WorkFlowManager.cs: * FrontOfficeController.cs: * CatalogManager.cs: No more extra argument to get the catalog * DateQuery.aspx: * AskForADate.cs: * GoogleController.cs: Google Date new query model * style.css: * BBCodeHelper.cs: Doc page responsive design * Service.cs: * SetPrice.cs: xml doc * WebApiConfig.cs: refactioring
33 lines
593 B
C#
33 lines
593 B
C#
using System;
|
|
using Yavsc;
|
|
using SalesCatalog;
|
|
using System.Web.Routing;
|
|
using System.Threading.Tasks;
|
|
using System.Diagnostics;
|
|
using System.Web.Http;
|
|
using System.Net.Http;
|
|
using System.Web;
|
|
using System.Linq;
|
|
using System.IO;
|
|
using System.Net;
|
|
using Yavsc;
|
|
using System.Web.Security;
|
|
using Yavsc.Model.WorkFlow;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
using Yavsc.Model.RolesAndMembers;
|
|
using Yavsc.Controllers;
|
|
using Yavsc.Formatters;
|
|
using System.Text;
|
|
using System.Web.Profile;
|
|
|
|
namespace Yavsc.ApiControllers
|
|
{
|
|
|
|
interface IValueProvider<T>
|
|
{
|
|
T GetValue();
|
|
}
|
|
|
|
}
|
|
|