20 lines
630 B
C#
20 lines
630 B
C#
using Warehouse.IRepositories;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Warehouse.Services
|
|
{
|
|
public partial class video_channelService
|
|
{
|
|
private readonly IHttpContextAccessor _httpContextAccessor;
|
|
private readonly Ivideo_channelRepository _repository;
|
|
|
|
[ActivatorUtilitiesConstructor]
|
|
public video_channelService(Ivideo_channelRepository dbRepository, IHttpContextAccessor httpContextAccessor) : base(dbRepository)
|
|
{
|
|
_httpContextAccessor = httpContextAccessor;
|
|
_repository = dbRepository;
|
|
}
|
|
}
|
|
}
|