コード例 #1
0
ファイル: DoctorController.cs プロジェクト: BaqerNaqvi/Homio
        public ActionResult AddNewDoc(string docId)
        {
            var doc = new AppUserDoc
            {
                ShiftDays = "Friday,Monday"
            };

            if (!string.IsNullOrEmpty(docId))
            {
                doc = DocService.GetDoc(docId);
            }
            return(View(doc));
        }