CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
CslaBuilder.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ICslaBuilder.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Default CSLA .NET service builder</summary>
7//-----------------------------------------------------------------------
8using Microsoft.Extensions.DependencyInjection;
9
10namespace Csla.Configuration
11{
16 {
21#pragma warning disable CS3001 // Argument type is not CLS-compliant
22 public CslaBuilder(IServiceCollection services)
23#pragma warning restore CS3001 // Argument type is not CLS-compliant
24 {
25 Services = services;
26 }
27
31#pragma warning disable CS3003 // Type is not CLS-compliant
32 public IServiceCollection Services { get; set; }
33#pragma warning restore CS3003 // Type is not CLS-compliant
34 }
35}
Default CSLA .NET service builder
Definition: CslaBuilder.cs:16
IServiceCollection Services
Gets or sets the services collection
Definition: CslaBuilder.cs:32
CslaBuilder(IServiceCollection services)
Creates an instance of the type
Definition: CslaBuilder.cs:22
Define CSLA .NET service builder
Definition: ICslaBuilder.cs:16