基本修改完毕开始进行单元测试
This commit is contained in:
12
DMS.Infrastructure/Interfaces/IDeviceService.cs
Normal file
12
DMS.Infrastructure/Interfaces/IDeviceService.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using DMS.Core.Models;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DMS.Infrastructure.Interfaces
|
||||
{
|
||||
public interface IDeviceService
|
||||
{
|
||||
Task<int> DeleteAsync(Device device, List<MenuBean> menus);
|
||||
Task AddAsync(Device device);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user