institutionContract createClinetAccount bug fixed

This commit is contained in:
SamSys
2025-04-20 18:12:47 +03:30
parent 6aefe7e88c
commit 7ab83c73aa
5 changed files with 103 additions and 9 deletions

View File

@@ -549,7 +549,8 @@ public class AccountApplication : IAccountApplication
return operation.Succcedded(2);
}
public AccountLeftWorkViewModel WorkshopList(long accountId)
public AccountLeftWorkViewModel WorkshopList(long accountId)
{
string fullname = this._accountRepository.GetById(accountId).Fullname;
List<WorkshopAccountlistViewModel> source =_accountLeftworkRepository.WorkshopList(accountId);
@@ -785,4 +786,10 @@ public class AccountApplication : IAccountApplication
//}
#endregion
public bool CheckExistClientAccount(string userName)
{
return _accountRepository.CheckExistClientAccount(userName);
}
}