You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.1 KiB
49 lines
1.1 KiB
using Tiobon.Core.IRepository.Base;
|
|
using Tiobon.Core.IServices;
|
|
using Tiobon.Core.Model.Models;
|
|
using Tiobon.Core.Services.BASE;
|
|
|
|
namespace Tiobon.Core.Services
|
|
{
|
|
public class AdvertisementServices : BaseServices<Advertisement>, IAdvertisementServices
|
|
{
|
|
public void ReturnExp()
|
|
{
|
|
|
|
//int a = 1;
|
|
//int b = 0;
|
|
|
|
// int c = a / b;
|
|
}
|
|
|
|
//public IAdvertisementRepository dal = new AdvertisementRepository();
|
|
//public int Sum(int i, int j)
|
|
//{
|
|
// return base.Sum(i, j);
|
|
|
|
//}
|
|
|
|
|
|
//public int Add(Advertisement model)
|
|
//{
|
|
// return base.Add(model);
|
|
//}
|
|
|
|
//public bool Delete(Advertisement model)
|
|
//{
|
|
// return base.Delete(model);
|
|
//}
|
|
|
|
//public List<Advertisement> Query(Expression<Func<Advertisement, bool>> whereExpression)
|
|
//{
|
|
// return base.Query(whereExpression);
|
|
|
|
//}
|
|
|
|
//public bool Update(Advertisement model)
|
|
//{
|
|
// return base.Update(model);
|
|
//}
|
|
|
|
}
|
|
}
|
|
|