17 lines
472 B
C#
17 lines
472 B
C#
using New_College.IServices.BASE;
|
|
using New_College.Model.Models;
|
|
|
|
namespace New_College.IServices
|
|
{
|
|
public interface IAdvertisementServices :IBaseServices<Advertisement>
|
|
{
|
|
//int Sum(int i, int j);
|
|
//int Add(Advertisement model);
|
|
//bool Delete(Advertisement model);
|
|
//bool Update(Advertisement model);
|
|
//List<Advertisement> Query(Expression<Func<Advertisement, bool>> whereExpression);
|
|
|
|
void ReturnExp();
|
|
}
|
|
}
|