26 lines
549 B
C#
26 lines
549 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using dccdc.Models;
|
|||
|
|
using System.Data;
|
|||
|
|
using dccdc.DAL;
|
|||
|
|
|
|||
|
|
namespace dccdc.BLL
|
|||
|
|
{
|
|||
|
|
public class infectionRedMoneyBll
|
|||
|
|
{
|
|||
|
|
public infectionRedMoneyDal dal = new infectionRedMoneyDal();
|
|||
|
|
public object Update(infectionRedMoneyModel model)
|
|||
|
|
{
|
|||
|
|
return dal.Update(model);
|
|||
|
|
}
|
|||
|
|
public infectionRedMoneyModel getInitData()
|
|||
|
|
{
|
|||
|
|
return dal.getInitData();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|