Skip to content

Commit

Permalink
__
Browse files Browse the repository at this point in the history
  • Loading branch information
ergen35 committed Jun 23, 2021
1 parent 5570f95 commit 8a79622
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions PoliceOp.API/Controllers/AgentsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
using Microsoft.Extensions.Logging;
using PoliceOp.API.Data;
using PoliceOp.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
Expand Down Expand Up @@ -88,7 +87,7 @@ public async Task<ActionResult<IEnumerable<Agent>>> GetAgents()
{
await _context.Entry(item).Reference(r => r.Residence).LoadAsync();
}

logger.LogInformation($"Liste:: Recherche Agent @Mot-Clé:: {keyword} |");

return Results;
Expand Down
2 changes: 1 addition & 1 deletion PoliceOp.API/Controllers/AuthController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using PoliceOp.API.Data;
using PoliceOp.Models;
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;


namespace PoliceOp.API.Controllers
Expand Down
2 changes: 1 addition & 1 deletion PoliceOp.API/Controllers/DiffusionsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using PoliceOp.API.Data;
using PoliceOp.Models;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;

namespace PoliceOp.API.Controllers
{
Expand Down
2 changes: 1 addition & 1 deletion PoliceOp.API/Controllers/IdentificationController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using PoliceOp.API.Data;
using PoliceOp.Models;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;


namespace PoliceOp.API.Controllers
Expand Down

0 comments on commit 8a79622

Please sign in to comment.