|
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 | |
|---|
| 1 | using Microsoft.AspNetCore.Mvc;
|
|---|
| 2 |
|
|---|
| 3 | namespace 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.