Esempio n. 1
0
        public bool InsertChecklist(int cardId, int checklistIndex, string title, byte status)
        {
            ChecklistDAL cldal = new ChecklistDAL();

            return(cldal.InsertChecklist(cardId, checklistIndex, title, status));
        }