Example #1
0
 /// <summary>
 /// 删除实体
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public void Delete(ProblemLibrary model)
 {
     this._ProblemLibraryBiz.Delete(model);
 }
Example #2
0
 /// <summary>
 /// 修改实体
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public void Update(ProblemLibrary model)
 {
     this._ProblemLibraryBiz.Update(model);
 }
Example #3
0
 /// <summary>
 /// 添加实体
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public ProblemLibrary Insert(ProblemLibrary model)
 {
     return(this._ProblemLibraryBiz.Insert(model));
 }
Example #4
0
 /// <summary>
 /// 删除实体
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public void Delete(ProblemLibrary model)
 {
     this._repoProblemLibrary.Delete(model);
 }
Example #5
0
 /// <summary>
 /// 修改实体
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public void Update(ProblemLibrary model)
 {
     this._repoProblemLibrary.Update(model);
 }
Example #6
0
 /// <summary>
 /// 添加实体
 /// </summary>
 /// <param name="model"></param>
 /// <returns></returns>
 public ProblemLibrary Insert(ProblemLibrary model)
 {
     return(this._repoProblemLibrary.Insert(model));
 }