public async Task <Tuple <bool, string, FranchiseMaster> > UpdateFranchise(FranchiseMaster obj) { Tuple <bool, string, FranchiseMaster> result = null; try { result = await _repo.UpdateFranchise(obj); } catch (Exception ex) { ErrorLog.Write(ex); } return(result); }