public long GetDeleteCountryMasterById(CountryMaster cm)
        {
            try
            {
                if (cm.Id > 0)
                {
                    mbc.GetDeleteCountryrowById(cm);
                    return(cm.Id);
                }

                return(0);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally { }
        }