public Response <bool> CreateAccount([FromForm] string username, [FromForm] string password, [FromForm] string email, [FromForm] string fiscal_code, [FromForm] string verify_code) { bool res = auth.AccountRegister(username, password, email.ToLower(), fiscal_code.ToUpper(), verify_code, out string message); return(CreateBoolean(res, ResponseCode.OK, message)); }