forked from fajiao/OnvifServer-CSharp
fajiao
3 years ago
19 changed files with 41 additions and 37 deletions
@ -1,8 +1,9 @@ |
|||||
using EC.App.ThatService.Onvif.Impl; |
using EC.App.ThatBLL.Onvif.Intf; |
||||
|
using EC.App.ThatService.Onvif; |
||||
using EC.Onvif; |
using EC.Onvif; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
|
||||
namespace EC.App.ThatBLL.Onvif.Impl |
namespace EC.App.ThatBLL.Onvif |
||||
{ |
{ |
||||
public class CurdBLL : ICurdBLL |
public class CurdBLL : ICurdBLL |
||||
{ |
{ |
@ -1,7 +1,8 @@ |
|||||
using EC.App.ThatService.Onvif.Impl; |
using EC.App.ThatBLL.Onvif.Intf; |
||||
|
using EC.App.ThatService.Onvif; |
||||
using EC.Onvif; |
using EC.Onvif; |
||||
|
|
||||
namespace EC.App.ThatBLL.Onvif.Impl |
namespace EC.App.ThatBLL.Onvif |
||||
{ |
{ |
||||
public class DeviceBLL : IDeviceBLL |
public class DeviceBLL : IDeviceBLL |
||||
{ |
{ |
@ -1,7 +1,7 @@ |
|||||
using EC.App.Core; |
using EC.App.Core; |
||||
using Furion.DependencyInjection; |
using Furion.DependencyInjection; |
||||
|
|
||||
namespace EC.App.ThatBLL.Onvif |
namespace EC.App.ThatBLL.Onvif.Intf |
||||
{ |
{ |
||||
public interface IDeviceBLL : IBLL, ISingleton |
public interface IDeviceBLL : IBLL, ISingleton |
||||
{ |
{ |
@ -1,11 +1,12 @@ |
|||||
using EC.App.ThatService.Onvif.Impl; |
using EC.App.ThatBLL.Onvif.Intf; |
||||
|
using EC.App.ThatService.Onvif; |
||||
using EC.Onvif; |
using EC.Onvif; |
||||
using System; |
using System; |
||||
using System.IO; |
using System.IO; |
||||
using System.Net; |
using System.Net; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
|
||||
namespace EC.App.ThatBLL.Onvif.Impl |
namespace EC.App.ThatBLL.Onvif |
||||
{ |
{ |
||||
public class MediaBLL : IMediaBLL |
public class MediaBLL : IMediaBLL |
||||
{ |
{ |
@ -1,8 +1,9 @@ |
|||||
using EC.App.ThatService.Onvif.Impl; |
using EC.App.ThatBLL.Onvif.Intf; |
||||
|
using EC.App.ThatService.Onvif; |
||||
using EC.Onvif; |
using EC.Onvif; |
||||
using System.Threading.Tasks; |
using System.Threading.Tasks; |
||||
|
|
||||
namespace EC.App.ThatBLL.Onvif.Impl |
namespace EC.App.ThatBLL.Onvif |
||||
{ |
{ |
||||
public class PTZBLL : IPTZBLL |
public class PTZBLL : IPTZBLL |
||||
{ |
{ |
@ -1,9 +0,0 @@ |
|||||
using EC.App.Core; |
|
||||
using Furion.DependencyInjection; |
|
||||
|
|
||||
namespace EC.App.ThatService.Onvif |
|
||||
{ |
|
||||
public interface IOnvifClientService : IService, ISingleton |
|
||||
{ |
|
||||
} |
|
||||
} |
|
@ -1,9 +1,11 @@ |
|||||
using EC.App.Entity.Onvif; |
using EC.App.Core; |
||||
|
using EC.App.Entity.Onvif; |
||||
using EC.Onvif; |
using EC.Onvif; |
||||
|
using Furion.DependencyInjection; |
||||
|
|
||||
namespace EC.App.ThatService.Onvif.Impl |
namespace EC.App.ThatService.Onvif |
||||
{ |
{ |
||||
public class OnvifClientService : IOnvifClientService |
public class OnvifClientService : IService, ISingleton |
||||
{ |
{ |
||||
private readonly OnvifClientDict _dict = new OnvifClientDict(); |
private readonly OnvifClientDict _dict = new OnvifClientDict(); |
||||
|
|
Loading…
Reference in new issue