You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
444 B
C#
21 lines
444 B
C#
using log4net;
|
|
|
|
namespace Aucma.Core.Tasks
|
|
{
|
|
/// <summary>
|
|
/// 扫码枪初始化
|
|
/// </summary>
|
|
public class AucamTaskService : IAucamTaskService
|
|
{
|
|
private static readonly log4net.ILog log = LogManager.GetLogger(typeof(AucamTaskService));
|
|
public void ScannerGunAsync()
|
|
{
|
|
}
|
|
|
|
public void AucamTaskAsync()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|