Participants

IAutoFactory autoFactory = new BmwFactory();
IAuto auto = autoFactory.GetInstance();
    
interface IAuto
{
    string GetName();
}

class Bmw : IAuto
{
    public string GetName() => "Bmw";
}

interface IAutoFactory
{
    IAuto GetInstance();
}

class BmwFactory : IAutoFactory
{
    public IAuto GetInstance() => new Bmw();
}

Rules of Thumb