21 lines
521 B
C#
21 lines
521 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using BMA.EHR.Recruit.Service.Core;
|
||
|
|
using BMA.EHR.Recruit.Service.Data;
|
||
|
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
|
||
|
|
namespace BMA.EHR.Recruit.Service.Services
|
||
|
|
{
|
||
|
|
public class MinIOService
|
||
|
|
{
|
||
|
|
#region " Fields "
|
||
|
|
|
||
|
|
private readonly ApplicationDbContext _context;
|
||
|
|
private readonly IConfiguration _configuration;
|
||
|
|
private readonly IWebHostEnvironment _webHostEnvironment;
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|