22 lines
731 B
C#
22 lines
731 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.BaseData.Domain.ApiModel;
|
|||
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using APT.BaseData.Domain.Entities;
|
|||
|
|
using APT.MS.Domain.Entities.BI;
|
|||
|
|
using APT.Infrastructure.Api;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.IServices
|
|||
|
|
//namespace APT.BaseData.Domain.IServices.BI
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
//public interface IBIBSSafeCheckService //: ICommonService
|
|||
|
|
public interface IBIBSSafeCheckService : ICommonService
|
|||
|
|
{
|
|||
|
|
bool SafeCheckGet(Guid ORG_ID, DateTime? dtRun, ref List<T_BI_BSSAFECHECK> listSafeCheck, ref List<T_BI_BSCHECKTYPE> listCheckType, ref List<T_BI_SUMMARY> listSummary, ref T_BI_RUNLOG modelLog);
|
|||
|
|
}
|
|||
|
|
}
|