SystemRoleRepository.cs 1.9 KB

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