4c6f9a4ba8
Database Migration, Repositories, Automapper, Logger, StaticFiles
11 lines
240 B
C#
11 lines
240 B
C#
using PortBlog.API.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PortBlog.API.Repositories.Contracts
|
|
{
|
|
public interface IHobbyRepository
|
|
{
|
|
Task<IEnumerable<Hobby>> GetHobbiesForResumeAsync(int resumeId);
|
|
}
|
|
}
|