示例#1
0
        public IActionResult Create()
        {
            var model = new SchedulesCreateModel();

            model.SetDefaultAccount();

            return(View("CreateEditSchedule", model));
        }
示例#2
0
        public IActionResult Create(SchedulesCreateModel model)
        {
            model.Type = OperationType.Scheduling;

            return(createEditSchedule(model));
        }