dengjunjie
2 天以前 b784d019c3848718eb95eb0d34dde34c6a262b06
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using OfficeOpenXml;
using Spire.Xls;
using WIDESEAWCS_Core;
using WIDESEAWCS_Core.BaseRepository;
using WIDESEAWCS_Core.BaseServices;
using WIDESEAWCS_Core.Helper;
using WIDESEAWCS_DTO.BasicInfo;
using WIDESEAWCS_Model.Models;
 
namespace WIDESEAWCS_BasicInfoService
{
    public class ProcessInfoService : ServiceBase<Dt_ProcessInfo, IRepository<Dt_ProcessInfo>>, IProcessInfoService
    {
 
        private readonly IFormulaService _formulaService;
        private readonly IFormulaDetailService _formulaDetailService;
 
        public ProcessInfoService(
            IRepository<Dt_ProcessInfo> BaseDal,
            IFormulaService formulaService,
            IFormulaDetailService formulaDetailService
            ) : base(BaseDal)
        {
            _formulaService = formulaService;
            _formulaDetailService = formulaDetailService;
        }
 
        public IRepository<Dt_ProcessInfo> Repository => BaseDal;
    }
}