资源简介
CRM客户关系管理系统源码,C#,.NETCRM客户关系管理系统源码,C#,.NET
代码片段和文件信息
using System;
using System.Data;
using System.Collections.Generic;
using tomoral.Common;
using tomoral.Model;
namespace tomoral.BLL
{
///
/// CRM_Contact
///
public partial class CRM_Contact
{
private readonly tomoral.DAL.CRM_Contact dal=new tomoral.DAL.CRM_Contact();
public CRM_Contact()
{}
#region Method
///
/// 得到最大ID
///
public int GetMaxId()
{
return dal.GetMaxId();
}
///
/// 是否存在该记录
///
public bool Exists(int id)
{
return dal.Exists(id);
}
///
/// 增加一条数据
///
public int Add(tomoral.Model.CRM_Contact model)
{
return dal.Add(model);
}
///
/// 更新一条数据
///
public bool Update(tomoral.Model.CRM_Contact model)
{
return dal.Update(model);
}
///
/// 预删除
///
///
///
///
///
public bool AdvanceDelete(int id int isDelete string time)
{
return dal.AdvanceDelete(id isDelete time);
}
///
/// 删除一条数据
///
public bool Delete(int id)
{
return dal.Delete(id);
}
///
/// 删除一条数据
///
public bool DeleteList(string idlist )
{
return dal.DeleteList(idlist );
}
///
/// 得到一个对象实体
///
public tomoral.Model.CRM_Contact GetModel(int id)
{
return dal.GetModel(id);
}
///
/// 得到一个对象实体,从缓存中
///
public tomoral.Model.CRM_Contact GetModelByCache(int id)
{
string CacheKey = “CRM_ContactModel-“ + id;
object objModel = tomoral.Common.DataCache.GetCache(CacheKey);
if (objModel == null)
{
try
{
objModel = dal.GetModel(id);
if (objModel != null)
{
int ModelCache = tomoral.Common.ConfigHelper.GetConfigInt(“ModelCache“);
tomoral.Common.DataCache.SetCache(CacheKey objModel DateTime.Now.AddMinutes(ModelCache) TimeSpan.Zero);
}
}
catch{}
}
return (tomoral.Model.CRM_Contact)objModel;
}
///
/// 获得数据列表
///
public DataSet GetList(string strWhere)
{
return dal.GetList(strWhere);
}
///
/// 获得前几行数据
///
public DataSet GetList(int Topstring strWherestring filedOrder)
{
return dal.GetList(TopstrWherefiledOrder);
}
///
/// 获得数据列表
///
public List GetModelList(string strWhere)
{
DataSet ds = dal.GetList(strWhere);
return DataTableToList(ds.Tables[0]);
}
///
/// 获得数据列表
///
public List DataTableToList(DataTable dt)
{
List modelList = new List();
int rowsCount = dt.Ro
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1270 2014-07-01 16:05 .net ---CRM客户管理系统源码\App_Date\TMCRM V1.0.0.10 UPDATE.sql
文件 148 2014-07-01 16:04 .net ---CRM客户管理系统源码\App_Date\TMCRM V1.0.0.11 UPDATE.sql
文件 44239 2014-12-19 21:31 .net ---CRM客户管理系统源码\App_Date\TMCRM V1.15.0.1 UPDATE.sql
文件 329216 2014-12-29 17:47 .net ---CRM客户管理系统源码\App_Date\TMCRM(可兼容2005).sql
文件 3691008 2015-01-09 23:52 .net ---CRM客户管理系统源码\App_Date\tmcrm.bak
文件 4194304 2015-04-17 18:26 .net ---CRM客户管理系统源码\App_Date\TMCRM.mdf
文件 1048576 2015-04-17 18:26 .net ---CRM客户管理系统源码\App_Date\TMCRM_0.ldf
文件 59000 2012-02-08 00:08 .net ---CRM客户管理系统源码\DLL\VBIDE.dll
文件 15360 2011-08-20 22:18 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\COM.Excel.dll
文件 1089536 2011-08-20 22:18 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\Excel.dll
文件 102400 2011-08-20 22:18 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\IBatisNet.Common.dll
文件 249856 2011-08-20 22:18 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\IBatisNet.DataMapper.dll
文件 320512 2011-01-04 13:48 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\Newtonsoft.Json.Net35.dll
文件 45056 2011-08-20 22:18 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\OpenSmtp.dll
文件 110592 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.BLL.dll
文件 269824 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.BLL.pdb
文件 61440 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Common.dll
文件 138752 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Common.pdb
文件 262144 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DAL.dll
文件 296448 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DAL.pdb
文件 61440 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DBUtility.dll
文件 165376 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.DBUtility.pdb
文件 73728 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Model.dll
文件 333312 2016-11-30 14:29 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\tomoral.Model.pdb
文件 110592 2015-01-06 10:54 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.BLL.dll
文件 310784 2015-01-06 10:54 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.BLL.pdb
文件 61440 2014-08-25 08:57 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.Common.dll
文件 148992 2014-08-25 08:57 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.Common.pdb
文件 262144 2015-01-06 10:53 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.DAL.dll
文件 337408 2015-01-06 10:53 .net ---CRM客户管理系统源码\ToMoral.BLL\bin\Debug\XHD.DAL.pdb
............此处省略7327个文件信息
相关资源
- C# KTV项目 练手
- 吉日嘎拉 C#.NET 通用权限管理系统组件
-
基于Arcob
jects与C#.net的gis应用开发 - C# WinForm实践开发教程 窗体程序开发教
- 深入浅出WPF(中文版)
- C#实现简单的音乐播放器只支持.wav格
- C#实现图片鼠标拖动和滚动缩放《新纹
- EmguCV3.4.3
- ASP.Net MVC + bootstrap 仓库管理系统源码
- 基于C# MVC开发的WEB API通用框架 附带
- C#数字图像处理算法典型](随书光盘
- c#图解教程(第4版)中文完整版和源
- c# 人脸识别源码和使用说明
- 深入体验ASP.NET项目开发_源码
- C#课程设计案例精编第2版
- ASP.Net呼叫中心客服系统源码.zip.zip
- 基于C# MVC开发的WEB API通用框架 附带
- rabbitMQ封装c#
- AE的MapControl直接加载Oracle数据(C#)
- Unity3d开发案例(坦克克星游戏,C#版
- 超级实用的Shape转WKT利器,有源码
- Professional C# 7 and .NET Core 2.0
- C#窗体开发程序 学校管理系统 WINFOR
- C#开发B/S后台管理系统
- asp.net母版页大全
- C#多线程编程实战_中文完整版带书签
- win8应用商店程序fashionHouse
- winform 嵌套chrome浏览器,.net开发谷歌
- C#与.NET 4高级程序设计(第5版)-文字
- 10个ASP.NET项目源码
评论
共有 条评论