Skip to content

Instantly share code, notes, and snippets.

@mertmtn
Last active September 25, 2022 22:54
namespace GenericObjectMapper.Business.Abstract
{
public interface ICategoryService
{
IDataResult<CategoryDTO> GetById(int categoryId);
IDataResult<List<Category>> GetAll();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment