...
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using Common.Dtos.Company;
|
||||
using Common.Dtos;
|
||||
using Common.Dtos.Company;
|
||||
using System.Net.Http.Json;
|
||||
|
||||
namespace HushianWebApp.Service
|
||||
@@ -35,6 +36,11 @@ namespace HushianWebApp.Service
|
||||
var response = await _baseController.Put($"{BaseRoute}UpdateCompany",dto);
|
||||
return response.IsSuccessStatusCode;
|
||||
}
|
||||
public async Task<bool> ChangePasswordCompany(ChangePasswordDto request)
|
||||
{
|
||||
var response = await _baseController.Put($"{BaseRoute}ChangePasswordCompany", request);
|
||||
return response.IsSuccessStatusCode;
|
||||
}
|
||||
//public async Task<bool> AddContentInfo(string str)
|
||||
//{
|
||||
// var response = await _baseController.Post($"{BaseRoute}AddContentInfo?ContentInfo={str}");
|
||||
|
Reference in New Issue
Block a user