31 lines
718 B
C#
31 lines
718 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 summaryreport_suggest_maintainBll
|
|
{
|
|
summaryreport_suggest_maintainDal dal = new summaryreport_suggest_maintainDal();
|
|
|
|
public List<summaryreport_suggest_maintainModel> GetAllList(string id, string status)
|
|
{
|
|
return dal.GetAllList(id, status);
|
|
}
|
|
|
|
public object save(summaryreport_suggest_maintainModel model)
|
|
{
|
|
return dal.save(model);
|
|
}
|
|
|
|
public object delete(string id)
|
|
{
|
|
return dal.delete(id);
|
|
}
|
|
}
|
|
}
|