31 lines
677 B
C#
31 lines
677 B
C#
|
|
using dccdc.DAL;
|
|||
|
|
using dccdc.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class main_suggestionsBll
|
|||
|
|
{
|
|||
|
|
main_suggestionsDal dal = new main_suggestionsDal();
|
|||
|
|
|
|||
|
|
public List<main_suggestionsModel> GetAllList(string id, string jobsid, string harmfulid)
|
|||
|
|
{
|
|||
|
|
return dal.GetAllList(id, jobsid, harmfulid);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object save(main_suggestionsModel model)
|
|||
|
|
{
|
|||
|
|
return dal.save(model);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public object delete(string id)
|
|||
|
|
{
|
|||
|
|
return dal.delete(id);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|