public UserStorage GetUser() { return(UserReader.GetUser(httpContextAccessor.HttpContext)); }
public static UserStorage GetUser(HttpContext httpContext) { var reader = new UserReader(httpContext); return(reader.GetUser()); }