public void Post([FromBody]string value, int projectId, int branchId)
        {
            GitBranch branch = new GitBranch { Id = branchId, ProjectId = projectId };

            if (branch.Exists())
            {
                Response.StatusCode = Convert.ToInt16(HttpStatusCode.OK);
            } else
            {
                try {
                    branch.Save();

                    Response.StatusCode = Convert.ToInt16(HttpStatusCode.Created);
                } catch (Exception exception)
                {
                    var tes = exception;
                    Response.StatusCode = Convert.ToInt16(HttpStatusCode.InternalServerError);
                }
            }
        }