21 lines
506 B
C#
21 lines
506 B
C#
namespace LaaProduction.Services.Interfaces
|
|
{
|
|
using LaaProduction.Services.Models;
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
public interface IAccountService
|
|
{
|
|
Employee FindEmployee(Int16 userId);
|
|
|
|
IEnumerable<String> FindUserFunctions(Int16 appId, String username, String password);
|
|
|
|
Int16 Login(String username, String password);
|
|
|
|
Int32 ResetPassword(String username, String password);
|
|
|
|
Int32 ResetPassword(String username);
|
|
}
|
|
}
|