tijian_tieying/web/dccdc.BLL/professionalExamProjectResultImgsBll.cs

37 lines
860 B
C#
Raw Normal View History

2025-02-20 12:14:39 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using dccdc.DAL;
using dccdc.Models;
using dccdc.Models.DTO;
namespace dccdc.BLL
{
public class professionalExamProjectResultImgsBll
{
public professionalExamProjectResultImgsDal dal = new professionalExamProjectResultImgsDal();
public int saveResultImgs(List<ProfessionalExamProjectResultImgsModel> list)
{
if (list.Count <= 0)
{
return 0;
}
return dal.saveResultImgs(list);
}
public List<ProfessionalExamProjectResultImgsModel> getCaiChaoInfo(int resultId)
{
if (resultId == 0)
{
return null;
}
return dal.getCaiChaoInfo(resultId);
}
}
}