19 lines
495 B
C#
19 lines
495 B
C#
using Repository.BackendRepository.Interface;
|
|
using Repository.Helper;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Repository.BackendRepository.Implement
|
|
{
|
|
public class BackgroundServiceMsSqlRepository : BackendRepository, IBackgroundServiceMsSqlRepository
|
|
{
|
|
public BackgroundServiceMsSqlRepository(IDatabaseHelper databaseHelper) : base(databaseHelper)
|
|
{
|
|
UseDB = "MSSQL";
|
|
}
|
|
|
|
}
|
|
}
|