using Stylist.Data.Models.DTOs; using Stylist.Data.Models.DTOs.Service; namespace Stylist.Domain.Repositories.Interfaces { public interface IServiceRepository { Task<IEnumerable<ServiceSalonPageDto>> GetRecommendedServicesBySalonAsync(int salonId); Task<IEnumerable<ServiceChoosePageDto>> GetServicesBySalonAsync(int salonId); } }