2020-03-27 17:12:40 +01:00

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 ;
}
}
}