With Opticon around the corner, we'll be canceling this month's (Sept) Happy Hour.

Class AbstractFactory

AbstractFactory

Inheritance
System.Object
AbstractFactory
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.Commerce.Customers.Common
Assembly: Mediachase.Commerce.dll
Version: 13.30.0
Syntax
public abstract class AbstractFactory : IAbstractFactory

Constructors

AbstractFactory()

Declaration
protected AbstractFactory()

Methods

Create<T>(Object)

Creates the specified obj.

Declaration
public T Create<T>(object obj)
Parameters
Type Name Description
System.Object obj

The obj.

Returns
Type Description
T
Type Parameters
Name Description
T

IsProduct<T>()

Determines whether this instance is product.

Declaration
public bool IsProduct<T>()
Returns
Type Description
System.Boolean

true if this instance is product; otherwise, false.

Type Parameters
Name Description
T

Implements