using HslCommunication.WebSocket;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_Core;
|
using WIDESEA_Core.BaseServices;
|
using WIDESEA_Core.Helper;
|
using WIDESEA_IApprovalRepository;
|
using WIDESEA_IApprovalService;
|
using WIDESEA_Model.Models;
|
|
namespace ApprovalService
|
{
|
public class ApprovalFlowService : ServiceBase<Dt_ApprovalFlow, IApprovalFlowRepository>, IApprovalFlowService
|
{
|
public ApprovalFlowService(IApprovalFlowRepository BaseDal) : base(BaseDal)
|
{
|
}
|
|
public override WebResponseContent AddData(Dt_ApprovalFlow entity)
|
{
|
return base.AddData(entity);
|
}
|
}
|
}
|