コード例 #1
0
 public bool Execute()
 {
     return(timeSlotRepository.Delete(Id));
 }
コード例 #2
0
ファイル: TimeSlotService.cs プロジェクト: corsjune/C868
        public int Delete(int id)
        {
            var data = _repo.GetById(id);

            return(_repo.Delete(data));
        }