15 lines
448 B
C#
15 lines
448 B
C#
using System;
|
|
|
|
using IRaCIS.Application.ViewModels;
|
|
using IRaCIS.Core.Application.Contracts.RequestAndResponse;
|
|
|
|
namespace IRaCIS.Application.Interfaces
|
|
{
|
|
public interface IDoctorAccountService
|
|
{
|
|
IResponseOutput Register(DoctorAccountRegisterDTO doctorAccount);
|
|
DoctorAccountDTO Login(DoctorAccountLoginDTO doctorAccount);
|
|
IResponseOutput UpdatePassword(DoctorAccountUpdatePasswordCommand doctorAccount);
|
|
}
|
|
}
|