using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; using AutoMapper; using Datory; using GxPress.Common.AppOptions; using GxPress.Common.Tools; using GxPress.Repository.Interface.AppReport; using Microsoft.Extensions.Options; namespace GxPress.Repository.Implement.AppReport { public class AppReportRepository: IAppReportRepository { private readonly Repository _repository; private readonly IMapper _mapper; public AppReportRepository(IOptionsMonitor dbOptionsAccessor, IMapper mapper) { var databaseType = StringUtils.ToEnum(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql); var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString); _repository = new Repository(database); _mapper = mapper; } public IDatabase Database => _repository.Database; public string TableName => _repository.TableName; public List TableColumns => _repository.TableColumns; public async Task InsertAsync(Entity.AppReport appReport) { return await _repository.InsertAsync(appReport); } public async Task UpdateAsync(Entity.AppReport appReport) { return await _repository.UpdateAsync(appReport); } public async Task> GetAppReportListAsync() { return await _repository.GetAllAsync(); } public async Task DeleteAsyncTask(int id) { return await _repository.DeleteAsync(id); } public async Task GetAppReport(int reportType) { return await _repository.GetAsync(Q.Where(nameof(Entity.AppReport.ReportType), reportType)); } } }