AmagnoVirtualPrinter/Common/VirtualPrinter.Agent.Core/Interfaces/IJobFactory.cs
2020-10-19 17:44:50 +02:00

15 lines
No EOL
363 B
C#

using System.IO;
using JetBrains.Annotations;
namespace VirtualPrinter.Agent.Core
{
public interface IJobFactory
{
[CanBeNull]
IJob Create([NotNull]string printerName, [NotNull]Stream stream);
[NotNull]
IJob Create([NotNull]string iniPath, [NotNull]string rawPath, IJobInfo jobInfo, ISessionInfo sessionInfo);
}
}