public dynamic GetAccountListData()
        {
            AccountPartyRepository repo = new AccountPartyRepository();
            dynamic List = repo.GetAccountListData();

            return(List);
        }
        public bool Delete(int id)
        {
            bool status = true;
            AccountPartyRepository repo = new AccountPartyRepository();

            status = repo.Delete(id);
            return(status);
        }
        public bool SaveEdit(AccountPartyModel acntModel)
        {
            bool status = true;
            AccountPartyRepository repo = new AccountPartyRepository();

            status = repo.SaveEdit(ParserAddAccount(acntModel));
            return(status);
        }