Sobes.tech
Junior — Middle

What tasks and projects have you performed at your previous workplace?

sobes.tech AI

Answer from AI

At my previous job, I was involved in developing enterprise applications using C#. The main tasks included creating REST APIs with ASP.NET Core, working with databases through Entity Framework, and writing unit tests. I participated in optimizing performance and refactoring existing code.

Example of a simple controller in ASP.NET Core:

[ApiController]
[Route("api/[controller]")]
public class ProductsController : ControllerBase
{
    private readonly IProductService _service;

    public ProductsController(IProductService service)
    {
        _service = service;
    }

    [HttpGet]
    public IEnumerable<Product> Get() => _service.GetAllProducts();
}