Create models and Clean Arch boilerplate
This commit is contained in:
parent
3926db5446
commit
872dc1e263
21 changed files with 576 additions and 27 deletions
14
CSR.Application/Services/UserService.cs
Normal file
14
CSR.Application/Services/UserService.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
namespace CSR.Application.Services;
|
||||
|
||||
using CSR.Application.Interfaces;
|
||||
using CSR.Domain.Entities;
|
||||
|
||||
public class UserService(IUserRepository userRepository) : IUserService
|
||||
{
|
||||
private readonly IUserRepository _userRepository = userRepository;
|
||||
|
||||
public void CreateNewUser(string username, string email, string password, bool isAdmin = false)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue