1
vote
Factory pattern in C#: How to ensure an object instance can only be created by a factory class?
Yet another (lightweight) option is to make a static factory method in the BusinessObject class and keep the constructor private.
public class BusinessObject
{
public static Busine …
