public ActionResult Customers()
        {
            APIAuth  auth     = new APIAuth(Request, Response);
            AuthInfo authInfo = auth.CheckLogin();

            if (authInfo.IsAuthenticated)
            {
                var userCustomers = db.GetUserCustomersSync(authInfo.User.Id);
                return(Content(new JavaScriptSerializer().Serialize(userCustomers.ToList()), "application/json"));
            }
            else
            {
                return(auth.Forbidden());
            }
        }