コード例 #1
0
        public HttpResponseMessage DeleteFollower(string currentUserId)
        {
            SuccessResponse response = new SuccessResponse();

            _followerSevice.DeleteFollower(currentUserId);
            return(Request.CreateResponse(HttpStatusCode.OK, response));
        }