2024-09-07 09:45:00 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
2024-09-07 14:09:18 +00:00
|
|
|
using Renis.Database.Models;
|
2024-09-07 09:45:00 +00:00
|
|
|
|
|
|
|
namespace renis_backend.Services.Users
|
|
|
|
{
|
|
|
|
public interface IUserService
|
|
|
|
{
|
2024-09-07 14:09:18 +00:00
|
|
|
public Task<User> GenerateUser();
|
|
|
|
public Task<User> GetUserAsync(string phone);
|
2024-09-07 09:45:00 +00:00
|
|
|
}
|
|
|
|
}
|