You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
using Txgy.EWS.Client.IDAL;
namespace Txgy.EWS.Client.DAL
{
public class RoleDal : WebDataAccess, IRoleDal
{
public Task<string> GetAll()
{
return this.GetDatas($"{domain}role/all");
}
public Task<string> GetAllByUserId(int userId)
{
return this.GetDatas($"{domain}role/all/{userId}");
}
public Task<string> GetAllUsers(int roleId)
{
return this.GetDatas($"{domain}role/all_users/{roleId}");
}
public Task Save(string role, string users, string menus)
{
Dictionary<string, HttpContent> param = new Dictionary<string, HttpContent>();
param.Add("role", new StringContent(role));
param.Add("users", new StringContent(users));
param.Add("menus", new StringContent(menus));
return this.PostDatas($"{domain}role/save", this.GetFormData(param));
}
}
}