CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
DefaultDataPortalActivator.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="DefaultDataPortalActivator.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Defines a type used to activate concrete business instances.</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Server
11{
12 internal class DefaultDataPortalActivator : IDataPortalActivator
13 {
18 public DefaultDataPortalActivator(ApplicationContext applicationContext)
19 {
20 ApplicationContext = applicationContext;
21 }
22
23 private ApplicationContext ApplicationContext { get; set; }
24
25 public object CreateInstance(Type requestedType)
26 {
27 return ApplicationContext.CreateInstanceDI(requestedType);
28 }
29
30 public void InitializeInstance(object obj)
31 {
32 // do no work by default
33 }
34
35 public void FinalizeInstance(object obj)
36 {
37 // do no work by default
38 }
39
40 public Type ResolveType(Type requestedType)
41 {
42 // return requested type by default
43 return requestedType;
44 }
45 }
46}