예제 #1
0
 public bool DreamFormSubmit(tbDream dreamTable)
 {
     var _dataContext = new CSCPortalDataContext();
     try
     {
         _dataContext.tbDreams.InsertOnSubmit(dreamTable);
         _dataContext.SubmitChanges();
     }
     catch (Exception e)
     {
         return false;
     }
     return true;
 }
예제 #2
0
        public bool DreamFormSubmit(tbDream dreamTable)
        {
            var _dataContext = new CSCPortalDataContext();

            try
            {
                _dataContext.tbDreams.InsertOnSubmit(dreamTable);
                _dataContext.SubmitChanges();
            }
            catch (Exception e)
            {
                return(false);
            }
            return(true);
        }
예제 #3
0
        public ActionResult DreamSubmit(DreamGridDisplayModel dreamModel)
        {
            var _service = new DreamService();
             var dreamTable=new tbDream();
             ProfileService profileService = new ProfileService();
             dreamTable.EMPID = HttpContext.User.Identity.Name ?? string.Empty;
             dreamTable.EMPNAME = profileService.getEmpName(HttpContext.User.Identity.Name) == null ? String.Empty : profileService.getEmpName(HttpContext.User.Identity.Name);
             //dreamTable.LOCATION = profileService.getPhone(empID) == null ? String.Empty : profileService.getPhone(empID);
             dreamTable.LOCATION = profileService.getLocation(HttpContext.User.Identity.Name) == null ? String.Empty : profileService.getLocation(HttpContext.User.Identity.Name);

            dreamTable.DTITLE=dreamModel.DreamTitle ?? string.Empty;
            dreamTable.DDESCRIPTION = dreamModel.DreamDescription ?? string.Empty;

            dreamTable.SUBMITTEDDATE = DateTime.Now;
            dreamTable.STATUSID = 1;
            _service.DreamFormSubmit(dreamTable);

            return View();
        }
예제 #4
0
        public ActionResult DreamSubmit(DreamGridDisplayModel dreamModel)
        {
            var            _service       = new DreamService();
            var            dreamTable     = new tbDream();
            ProfileService profileService = new ProfileService();

            dreamTable.EMPID   = HttpContext.User.Identity.Name ?? string.Empty;
            dreamTable.EMPNAME = profileService.getEmpName(HttpContext.User.Identity.Name) == null ? String.Empty : profileService.getEmpName(HttpContext.User.Identity.Name);
            //dreamTable.LOCATION = profileService.getPhone(empID) == null ? String.Empty : profileService.getPhone(empID);
            dreamTable.LOCATION = profileService.getLocation(HttpContext.User.Identity.Name) == null ? String.Empty : profileService.getLocation(HttpContext.User.Identity.Name);

            dreamTable.DTITLE       = dreamModel.DreamTitle ?? string.Empty;
            dreamTable.DDESCRIPTION = dreamModel.DreamDescription ?? string.Empty;

            dreamTable.SUBMITTEDDATE = DateTime.Now;
            dreamTable.STATUSID      = 1;
            _service.DreamFormSubmit(dreamTable);

            return(View());
        }
예제 #5
0
        public bool DreamFormSubmit(tbDream dreamTable)
        {
            var _repository = new DreamRepository();

            return(_repository.DreamFormSubmit(dreamTable));
        }
예제 #6
0
        public bool DreamFormSubmit(tbDream dreamTable)
        {
            var _repository=new DreamRepository();

               return _repository.DreamFormSubmit(dreamTable);
        }