-
Notifications
You must be signed in to change notification settings - Fork 0
/
CarImagesController.cs
92 lines (84 loc) · 2.53 KB
/
CarImagesController.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using Business.Abstract;
using Entities.Concrete;
using Microsoft.AspNetCore.Hosting;
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 CarImagesController : ControllerBase
{
ICarImagesService _carImagesService;
public CarImagesController(ICarImagesService carImagesService)
{
_carImagesService = carImagesService;
}
[HttpGet("getall")]
public IActionResult GetAll()
{
var result = _carImagesService.GetAll();
if (result.Success)
{
Ok(result);
}
return BadRequest(result);
}
[HttpGet("getbyid")]
public IActionResult GetById(int id)
{
var result = _carImagesService.Get(id);
if (result.Success)
{
Ok(result);
}
return BadRequest(result);
}
[HttpGet("getimagesbycarid")]
public IActionResult GetImagesById(int id)
{
var result = _carImagesService.GetImagesByCarId(id);
if (result.Success)
{
Ok(result);
}
return BadRequest(result);
}
[HttpPost("add")]
public IActionResult AddAsync([FromForm(Name = ("Image"))] IFormFile file, [FromForm] CarImages carImages)
{
var result = _carImagesService.Add(file, carImages);
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
[HttpPost("delete")]
public IActionResult Delete([FromForm(Name = ("Id"))] int Id)
{
var carImage = _carImagesService.Get(Id).Data;
var result = _carImagesService.Delete(carImage);
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
[HttpPost("update")]
public IActionResult Update([FromForm(Name = ("Image"))] IFormFile file, [FromForm(Name = ("Id"))] int Id)
{
var carImage = _carImagesService.Get(Id).Data;
var result = _carImagesService.Update(file, carImage);
if (result.Success)
{
return Ok(result);
}
return BadRequest(result);
}
}
}