
* WebControls.csproj: * Estimate.aspx: UserName input control * IValueProvider.cs: * TemplateException.cs: * ResultPages.cs: code cleanning * WorkFlowController.cs: Admin now can register new users * LocalizedText.resx: * LocalizedText.Designer.cs: new registration messages * RegisterModel.cs: The registration message contains the user validation decision
33 lines
580 B
C#
33 lines
580 B
C#
using System;
|
|
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();
|
|
}
|
|
|
|
}
|
|
|