public ActionResult <Response> GetAudioEffectById(int id)
        {
            response = new Response();

            response = audioEffectService.GetAudioEffectById(id);

            return(responseFactory.CreateControllerResponse(response));
        }
        public ActionResult <Response> GetUserById(int id)
        {
            response = new Response();

            response = userService.GetUserById(id);

            return(responseFactory.CreateControllerResponse(response));
        }
        public ActionResult <Response> Login(User user)
        {
            response = new Response();

            response = homeService.Login(user.email, user.password);

            return(responseFactory.CreateControllerResponse(response));
        }
        public ActionResult <Response> GetProjectById(int id)
        {
            response = new Response();

            response = playgroundService.GetProjectById(id);

            return(responseFactory.CreateControllerResponse(response));
        }