refacto name spaces
This commit is contained in:
parent
654065d7fe
commit
94eb8e2fff
108 changed files with 1839 additions and 282 deletions
|
|
@ -6,13 +6,13 @@ using System.Net.Http;
|
|||
|
||||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
using isn.Abstract;
|
||||
using Isn.Abstract;
|
||||
using System.Linq;
|
||||
using Xunit;
|
||||
using isn.abst;
|
||||
using Isn.@abstract;
|
||||
using isnd.Entities;
|
||||
|
||||
namespace isn.tests
|
||||
namespace Isn.tests
|
||||
{
|
||||
public class Tests
|
||||
{
|
||||
|
|
@ -21,7 +21,7 @@ namespace isn.tests
|
|||
public void HaveADefaultDataProtector()
|
||||
{
|
||||
string pass = "a lame and big pass";
|
||||
isn.IDataProtector _protector = new isn.DefaultDataProtector();
|
||||
Isn.IDataProtector _protector = new Isn.DefaultDataProtector();
|
||||
string protectedpass = _protector.Protect(pass);
|
||||
string unprotectedpass = _protector.UnProtect(protectedpass);
|
||||
Console.WriteLine(protectedpass);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue