|
|
@ -1,12 +1,14 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.Linq; |
|
|
|
using System.Threading; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Castle.Components.DictionaryAdapter; |
|
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
using Microsoft.EntityFrameworkCore; |
|
|
|
using Volo.Abp; |
|
|
|
using Volo.Abp.Application.Dtos; |
|
|
|
using Volo.Abp.Domain.Entities; |
|
|
|
using Volo.Abp.Domain.Repositories; |
|
|
|
using Volo.Abp.ObjectMapping; |
|
|
@ -29,6 +31,7 @@ public class ChassisAppService |
|
|
|
, IChassisAppService |
|
|
|
|
|
|
|
{ |
|
|
|
private new readonly IChassisRepository _repository; |
|
|
|
private readonly IChassisManager _manager; |
|
|
|
|
|
|
|
public ChassisAppService( |
|
|
@ -39,8 +42,10 @@ public class ChassisAppService |
|
|
|
base.UpdatePolicyName = ChassisPermissions.Update; |
|
|
|
base.DeletePolicyName = ChassisPermissions.Delete; |
|
|
|
|
|
|
|
_repository = repository; |
|
|
|
_manager = manager; |
|
|
|
} |
|
|
|
#region 无用
|
|
|
|
|
|
|
|
[NonAction] |
|
|
|
public Task<ChassisDTO> GetDetailAsync(Guid id, Guid detailId) |
|
|
@ -77,4 +82,6 @@ public class ChassisAppService |
|
|
|
{ |
|
|
|
throw new NotImplementedException(); |
|
|
|
} |
|
|
|
|
|
|
|
#endregion
|
|
|
|
} |
|
|
|