示例#1
0
 /// <summary>
 /// Registers the library with the bootstrapper.
 /// </summary>
 /// <param name="bootstrapper">The bootstrapper.</param>
 /// <returns>The bootstrapper</returns>
 public static IBootstrapper?RegisterInflatable(this IBootstrapper?bootstrapper)
 {
     return(bootstrapper?.AddAssembly(typeof(Registration).Assembly)
            ?.RegisterSQLHelper()
            ?.RegisterDataModeler()
            ?.RegisterBigBookOfDataTypes()
            ?.RegisterHolmes());
 }
示例#2
0
 /// <summary>
 /// Registers the library with the bootstrapper.
 /// </summary>
 /// <param name="bootstrapper">The bootstrapper.</param>
 /// <returns>The bootstrapper</returns>
 public static IBootstrapper RegisterSQLHelper(this IBootstrapper bootstrapper)
 {
     return(bootstrapper.AddAssembly(typeof(Registration).GetTypeInfo().Assembly)
            .RegisterBigBookOfDataTypes());
 }
示例#3
0
 /// <summary>
 /// Registers the aspectus library with the bootstrapper.
 /// </summary>
 /// <param name="bootstrapper">The bootstrapper.</param>
 /// <returns>The bootstrapper</returns>
 public static IBootstrapper RegisterCorset(this IBootstrapper bootstrapper)
 {
     return(bootstrapper.AddAssembly(typeof(Corset).GetTypeInfo().Assembly));
 }
示例#4
0
 /// <summary>
 /// Registers the library with the bootstrapper.
 /// </summary>
 /// <param name="bootstrapper">The bootstrapper.</param>
 /// <returns>The bootstrapper</returns>
 public static IBootstrapper RegisterEnlighten(this IBootstrapper bootstrapper)
 {
     return(bootstrapper.AddAssembly(typeof(CanisterRegistration).GetTypeInfo().Assembly)
            .RegisterBigBookOfDataTypes()
            .RegisterFileCurator());
 }