internal static BatchSaveErrorImpl GetInstance([CallerMemberName] string callerName = "")
        {
            BatchSaveErrorImpl instance = default(BatchSaveErrorImpl);

            InstanceFactory(ref instance, callerName);
            return(instance);
        }
Ejemplo n.º 2
0
 static partial void InstanceFactory(ref BatchSaveErrorImpl instance, string callerName)
 {
     instance = new BatchSaveErrorImpl(new Exception(), WorkItemImpl_UnitTests.GetInstance());
 }
 static partial void InstanceFactory(ref BatchSaveErrorImpl instance, [CallerMemberName] string callerName = "");