using System.Collections.Generic; using System.Threading.Tasks; using AutoMapper; using Datory; using GxPress.Common.AppOptions; using GxPress.Common.Tools; using GxPress.Repository.Interface.SystemRole; using Microsoft.Extensions.Options; namespace GxPress.Repository.Implement.SystemRole { public class SystemRoleRepository : ISystemRoleRepository { private readonly Repository _repository; private readonly IMapper _mapper; public SystemRoleRepository(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.SystemRole.SystemRole model) { return await _repository.InsertAsync(model); } public async Task GetRoleAsync(int id) { return await _repository.GetAsync(id); } public async Task UpdateAsync(Entity.SystemRole.SystemRole model) { return await _repository.UpdateAsync(model); } public async Task DeleteAsync(int id) { return await _repository.DeleteAsync(id); } public async Task> GetSystemRolesAllAsync() { return await _repository.GetAllAsync(Q.OrderByDesc(nameof(Entity.SystemRole.SystemRole.CreatedDate))); } } }