forked from lkurzyniec/netcore-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CarService.cs
39 lines (34 loc) · 1.04 KB
/
CarService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using HappyCode.NetCoreBoilerplate.Core.Dtos;
using Microsoft.EntityFrameworkCore;
namespace HappyCode.NetCoreBoilerplate.Core.Services
{
public interface ICarService
{
Task<IEnumerable<CarDto>> GetAllSortedByPlateAsync(CancellationToken cancellationToken);
}
public class CarService : ICarService
{
private readonly CarsContext _dbContext;
public CarService(CarsContext dbContext)
{
_dbContext = dbContext;
}
public async Task<IEnumerable<CarDto>> GetAllSortedByPlateAsync(CancellationToken cancellationToken)
{
var cars = await _dbContext.Cars
.AsNoTracking()
.OrderBy(x => x.Plate)
.ToListAsync(cancellationToken);
return cars.Select(x => new CarDto
{
Id = x.Id,
Plate = x.Plate,
Model = x.Model,
});
}
}
}