First create solution
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using DevExpress.ExpressApp;
|
||||
using System.ComponentModel;
|
||||
using DevExpress.ExpressApp.DC;
|
||||
using System.Collections.Generic;
|
||||
using DevExpress.Persistent.BaseImpl;
|
||||
using DevExpress.ExpressApp.Model;
|
||||
using DevExpress.ExpressApp.Updating;
|
||||
using DevExpress.ExpressApp.Xpo;
|
||||
|
||||
namespace Nuvolar.Module.Web.CSharp
|
||||
{
|
||||
// For more typical usage scenarios, be sure to check out https://documentation.devexpress.com/eXpressAppFramework/clsDevExpressExpressAppModuleBasetopic.aspx.
|
||||
[ToolboxItemFilter("Xaf.Platform.Web")]
|
||||
public sealed partial class WebCSharpModule : ModuleBase {
|
||||
public WebCSharpModule() {
|
||||
InitializeComponent();
|
||||
BaseObject.OidInitializationMode = OidInitializationMode.AfterConstruction;
|
||||
}
|
||||
public override IEnumerable<ModuleUpdater> GetModuleUpdaters(IObjectSpace objectSpace, Version versionFromDB) {
|
||||
ModuleUpdater updater = new DatabaseUpdate.Updater(objectSpace, versionFromDB);
|
||||
return new ModuleUpdater[] { updater };
|
||||
}
|
||||
public override void Setup(XafApplication application) {
|
||||
base.Setup(application);
|
||||
// Manage various aspects of the application UI and behavior at the module level.
|
||||
}
|
||||
public override void CustomizeTypesInfo(ITypesInfo typesInfo) {
|
||||
base.CustomizeTypesInfo(typesInfo);
|
||||
CalculatedPersistentAliasHelper.CustomizeTypesInfo(typesInfo);
|
||||
}
|
||||
public override void ExtendModelInterfaces(ModelInterfaceExtenders extenders)
|
||||
{
|
||||
base.ExtendModelInterfaces(extenders);
|
||||
//extenders.Add<IModelAction, BusinessObjects.Interface.IModelActionExtender>();
|
||||
//extenders.Add<IModelMember, BusinessObjects.Interface.IModelMemberExtender>();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user