public HttpResponseMessage editAccount(bank_account account, long createBy)
        {
            var branch    = bankBranchRepository.editAccount(account, createBy);
            var formatter = RequestFormat.JsonFormaterString();

            return(Request.CreateResponse(HttpStatusCode.OK, branch, formatter));
        }