mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
20 lines
406 B
C#
20 lines
406 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCore.Services.MyControlPanel
|
|
{
|
|
public class UserService
|
|
{
|
|
private static UserDatabaseService _UserDatabaseService;
|
|
|
|
public static bool IsExist(string userId)
|
|
{
|
|
return _UserDatabaseService.GetById(userId) != null ? true : false ;
|
|
}
|
|
|
|
}
|
|
}
|
|
|