|
@@ -1,8 +1,9 @@
|
|
|
+using System.Collections.Generic;
|
|
|
using System.Threading.Tasks;
|
|
|
using GxPress.Repository.Interface;
|
|
|
using GxPress.Repository.Interface.Organization;
|
|
|
using GxPress.Service.Interface.OrganizationUser;
|
|
|
-
|
|
|
+using System.Transactions;
|
|
|
namespace GxPress.Service.Implement.OrganizationUser
|
|
|
{
|
|
|
public class OrganizationUserService : IOrganizationUserService
|
|
@@ -30,5 +31,26 @@ namespace GxPress.Service.Implement.OrganizationUser
|
|
|
model.UserId = userId;
|
|
|
return await organizationUserRepository.InsertAsync(model);
|
|
|
}
|
|
|
+ public async Task<bool> DeleteAsync(List<int> ids)
|
|
|
+ {
|
|
|
+ try
|
|
|
+ {
|
|
|
+ using (var transactionScope = new TransactionScope())
|
|
|
+ {
|
|
|
+ //查询用户
|
|
|
+ var list = await organizationUserRepository.GetAllAsync(ids);
|
|
|
+ //删除用户
|
|
|
+ await userRepository.DeleteAsync(ids);
|
|
|
+ await organizationUserRepository.DeleteAsync(ids);
|
|
|
+ transactionScope.Complete();
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ catch (System.Exception ex)
|
|
|
+ {
|
|
|
+ throw new Common.Exceptions.BusinessException(ex.Message);
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
}
|
|
|
}
|