mahao
1 year ago
5 changed files with 187 additions and 37 deletions
@ -0,0 +1,41 @@ |
|||
using Microsoft.AspNetCore.Authorization; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Linq; |
|||
using System.Text; |
|||
using System.Threading.Tasks; |
|||
using Volo.Abp.Application.Services; |
|||
using Win.Sfs.BaseData.ImportExcelCommon; |
|||
using Win.Sfs.SettleAccount.Entities.ImportMap; |
|||
using Win.Sfs.SettleAccount.Entities.Prices; |
|||
using Win.Sfs.SettleAccount.Entities.TaskJobs; |
|||
|
|||
namespace Win.Sfs.SettleAccount.Entities.BQ.Prices |
|||
{ |
|||
/// <summary>
|
|||
/// 标准价格单-相关应用服务
|
|||
/// </summary>
|
|||
[Authorize(SettleAccountPermissions.PriceLists.Default)] |
|||
[Route("api/SettleAccount/TB_PRICE_LIST_Service")] |
|||
public class PriceListAppService : ApplicationService |
|||
{ |
|||
private readonly PriceListManager _mng; |
|||
private readonly IExcelImportAppService _excelImportService; |
|||
private readonly ISettleAccountBranchEfCoreRepository<ImportColumnMap, Guid> _mapRepository; |
|||
private readonly TaskJobService _service; |
|||
public PriceListAppService( |
|||
IExcelImportAppService excelImportService, |
|||
ISettleAccountBranchEfCoreRepository<ImportColumnMap, Guid> mapRepository, |
|||
PriceListManager mng, |
|||
TaskJobService service |
|||
) |
|||
{ |
|||
_mapRepository = mapRepository; |
|||
_excelImportService = excelImportService; |
|||
_mng = mng; |
|||
_service = service; |
|||
} |
|||
|
|||
} |
|||
} |
Loading…
Reference in new issue