21 lines
683 B
C#
21 lines
683 B
C#
|
using AutoMapper;
|
|||
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.Services.Base;
|
|||
|
using SessionCompanion.Services.Interfaces;
|
|||
|
using SessionCompanion.ViewModels.BiographyViewModels;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
namespace SessionCompanion.Services.Services
|
|||
|
{
|
|||
|
public class BiographyService : ServiceBase<BiographyViewModel, Biography>, IBiographyService
|
|||
|
{
|
|||
|
public BiographyService(IMapper mapper, IRepository<Biography> repository) : base(mapper, repository)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|