DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
SpatialModule.cs
Go to the documentation of this file.
1 using System;
2 
3 using Deveel.Data.Routines;
4 using Deveel.Data.Services;
5 
6 namespace Deveel.Data.Spatial {
8  public string ModuleName {
9  get { return "Deveel.GIS"; }
10  }
11 
12  public string Version {
13  get { return typeof (SpatialModule).Assembly.GetName().Version.ToString(); }
14  }
15 
16  public void Register(IScope systemScope) {
17  systemScope.Register<SpatialTypeResolver>();
18  systemScope.RegisterInstance<IRoutineResolver>(SpatialSystemFunctions.Resolver);
19  }
20  }
21 }
The system uses instances of this interface to resolve routines given a user invocation.
void Register(IScope systemScope)
void Register(ServiceRegistration registration)