19 lines
598 B
C#
19 lines
598 B
C#
|
using SessionCompanion.Database.Tables;
|
|||
|
using SessionCompanion.Services.Base;
|
|||
|
using SessionCompanion.Services.Interfaces;
|
|||
|
using SessionCompanion.ViewModels.AlignmentViewModels;
|
|||
|
using AutoMapper;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using SessionCompanion.Database.Repositories.Base;
|
|||
|
|
|||
|
namespace SessionCompanion.Services.Services
|
|||
|
{
|
|||
|
public class AlignmentService : ServiceBase<AlignmentViewModel, Alignment>, IAlignmentService
|
|||
|
{
|
|||
|
public AlignmentService(IMapper mapper, IRepository<Alignment> repository) : base(mapper, repository)
|
|||
|
{ }
|
|||
|
}
|
|||
|
}
|