public void AuthorizeResponsive(int responsiveId) { var responsiveDa = new ResponsiveDA(_configuration); responsiveDa.AuthorizeUserResponsive(responsiveId); responsiveDa.Dispose(); }
public void InsertResponsive(string userId, int applicationId, int roleId, string userValidator) { var responsiveDa = new ResponsiveDA(_configuration); responsiveDa.AddUserResponsive(userId, applicationId, roleId, userValidator); responsiveDa.Dispose(); }