public bool Insert(ThirdPartyMarketingDomain enitity) { try { var result = this.Insert<ThirdPartyMarketingDomain>(enitity); return true; } catch (Exception) { return false; } }
public void Delete(ThirdPartyMarketingDomain entity) { try { this.Delete<ThirdPartyMarketingDomain>(entity); } catch (Exception) { throw; } }