AppReportRepository.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using AutoMapper;
  6. using Datory;
  7. using GxPress.Common.AppOptions;
  8. using GxPress.Common.Tools;
  9. using GxPress.Repository.Interface.AppReport;
  10. using Microsoft.Extensions.Options;
  11. namespace GxPress.Repository.Implement.AppReport
  12. {
  13. public class AppReportRepository: IAppReportRepository
  14. {
  15. private readonly Repository<Entity.AppReport> _repository;
  16. private readonly IMapper _mapper;
  17. public AppReportRepository(IOptionsMonitor<DatabaseOptions> dbOptionsAccessor, IMapper mapper)
  18. {
  19. var databaseType = StringUtils.ToEnum<DatabaseType>(dbOptionsAccessor.CurrentValue.DatabaseType, DatabaseType.MySql);
  20. var database = new Database(databaseType, dbOptionsAccessor.CurrentValue.ConnectionString);
  21. _repository = new Repository<Entity.AppReport>(database);
  22. _mapper = mapper;
  23. }
  24. public IDatabase Database => _repository.Database;
  25. public string TableName => _repository.TableName;
  26. public List<TableColumn> TableColumns => _repository.TableColumns;
  27. public async Task<int> InsertAsync(Entity.AppReport appReport)
  28. {
  29. return await _repository.InsertAsync(appReport);
  30. }
  31. public async Task<bool> UpdateAsync(Entity.AppReport appReport)
  32. {
  33. return await _repository.UpdateAsync(appReport);
  34. }
  35. public async Task<IEnumerable<Entity.AppReport>> GetAppReportListAsync()
  36. {
  37. return await _repository.GetAllAsync();
  38. }
  39. public async Task<bool> DeleteAsyncTask(int id)
  40. {
  41. return await _repository.DeleteAsync(id);
  42. }
  43. public async Task<Entity.AppReport> GetAppReport(int reportType)
  44. {
  45. return await _repository.GetAsync(Q.Where(nameof(Entity.AppReport.ReportType), reportType));
  46. }
  47. }
  48. }