forked from ddrilling/AsbCloudServer
20 lines
498 B
C#
20 lines
498 B
C#
using AsbCloudApp.Services;
|
|
using AsbCloudDb.Model;
|
|
using AutoMapper;
|
|
|
|
namespace AsbCloudInfrastructure.Services
|
|
{
|
|
public class DepositService : IDepositService
|
|
{
|
|
private readonly IAsbCloudDbContext db;
|
|
private readonly MapperConfiguration mapperConfiguration;
|
|
|
|
public DepositService(IAsbCloudDbContext db, MapperConfiguration mapperConfiguration)
|
|
{
|
|
this.db = db;
|
|
this.mapperConfiguration = mapperConfiguration;
|
|
}
|
|
|
|
}
|
|
}
|