| using System; | 
| using System.Collections.Generic; | 
| using System.Linq; | 
| using System.Text; | 
| using System.Threading.Tasks; | 
| using WIDESEA_Core.Attributes; | 
| using WIDESEA_Core.BaseRepository; | 
| using WIDESEA_Core.Helper; | 
| using WIDESEA_ITaskInfoRepository; | 
| using WIDESEA_Model.Models; | 
|   | 
| namespace WIDESEA_TaskInfoRepository; | 
|   | 
| public class Task_HtyRepository : RepositoryBase<Dt_Task_Hty>, ITask_HtyRepository | 
| { | 
|     public Task_HtyRepository(IUnitOfWorkManage unitOfWorkManage) : base(unitOfWorkManage) | 
|     { | 
|     } | 
|   | 
|     public bool InsertTask(Dt_Task_Hty task) | 
|     { | 
|         return Db.Insertable(task).ExecuteCommand() > 0; | 
|     } | 
| } |