source: iknow-api/Services/Implementations/UserService.cs@ 2859225

Last change on this file since 2859225 was 2859225, checked in by imbrsk <boris696boris@…>, 11 months ago

Implement user management features with database integration

  • Property mode set to 100644
File size: 263 bytes
Line 
1using Microsoft.AspNetCore.Mvc;
2
3namespace iknow_api.Core.Services
4{
5 public class UserService
6 {
7 private readonly AppDbContext _context;
8
9 public UserService(AppDbContext context)
10 {
11 _context = context;
12 }
13
14
15 }
16}
Note: See TracBrowser for help on using the repository browser.