15 lines
314 B
C#
15 lines
314 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace renis_backend.Services.Users
|
||
|
{
|
||
|
public class UserService : IUserService
|
||
|
{
|
||
|
public async Task<string> GenerateUser()
|
||
|
{
|
||
|
throw new NotImplementedException();
|
||
|
}
|
||
|
}
|
||
|
}
|