14 lines
No EOL
379 B
C#
14 lines
No EOL
379 B
C#
using System.IO;
|
|
using JetBrains.Annotations;
|
|
|
|
namespace AmagnoVirtualPrinter.Agent.Core.Interfaces
|
|
{
|
|
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);
|
|
}
|
|
} |