-
Notifications
You must be signed in to change notification settings - Fork 0
/
UsersController.cs
67 lines (62 loc) · 1.65 KB
/
UsersController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
using Business.Abstract;
using Core.Entities.Concrete;
using Entities.Concrete;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebAPI.Controllers
{
[Route("api/[controller]")]
[ApiController]
public class UsersController : ControllerBase
{
IUserService _usersService;
public UsersController(IUserService usersService)
{
_usersService = usersService;
}
[HttpGet("getall")]
public IActionResult GetAll()
{
var result = _usersService.GetAll();
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
[HttpGet("getbyemail")]
public IActionResult GetByEmail(String email)
{
var result = _usersService.GetByMail(email);
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
[HttpDelete("delete")]
public IActionResult Delete(User user)
{
var result = _usersService.DeleteUser(user);
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
[HttpPost("add")]
public IActionResult Add(User user)
{
var result = _usersService.AddUser(user);
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
}
}