public async Task <Tenant?> DeletePropertyAsync(string tenantId, string propertyKey)
        {
            var tenantRow = await _tenantRepository.DeletePropertyAsync(tenantId, propertyKey);

            return(tenantRow?.Let(it => _mapper.Map <Tenant>(it)));
        }
Ejemplo n.º 2
0
 public async Task <Tenant?> DeletePropertyAsync(string tenantId, string propertyKey)
 {
     return(await _tenantRepository.DeletePropertyAsync(tenantId, propertyKey));
 }