Beispiel #1
0
        public async Task <IActionResult> CreateBranch(BranchViewModel model)
        {
            var result = await _setupRepository.CreateBranchAsync(model);

            if (result == "Successful")
            {
                return(Ok());
            }
            return(BadRequest());
        }