37 lines
860 B
C#
37 lines
860 B
C#
|
|
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);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|