Interface
using BusinessEntities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessServices
{
public interface IEducationCategoryService
{
EducationCategory GetEducationCategoryById(int EducationCategory_Id);
//IEnumerable<City> GetCityById(int CityId);
IEnumerable<EducationCategory> GetAllEducationCategory();
int CreateEducationCategory(EducationCategory educationCategoryEntity);
bool UpdateEducationCategory(int EducationCategory_Id, EducationCategory educationCategoryEntity);
bool DeleteEducationCategory(int EducationCategory_Id, EducationCategory educationCategoryEntity);
}
}
using BusinessEntities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessServices
{
public interface IEducationCategoryService
{
EducationCategory GetEducationCategoryById(int EducationCategory_Id);
//IEnumerable<City> GetCityById(int CityId);
IEnumerable<EducationCategory> GetAllEducationCategory();
int CreateEducationCategory(EducationCategory educationCategoryEntity);
bool UpdateEducationCategory(int EducationCategory_Id, EducationCategory educationCategoryEntity);
bool DeleteEducationCategory(int EducationCategory_Id, EducationCategory educationCategoryEntity);
}
}
No comments:
Post a Comment