public bool CreateEmotional(EmotionalCreate model) { var entity = new Emotional() { OwnerId = _userId, CategoryType = model.CategoryType, Title = model.Title, ResourceType = model.ResourceType, Description = model.Description, City = model.City, State = model.State, InPerson = model.InPerson, Url = model.Url, CreatedUtc = DateTimeOffset.Now }; using (var ctx = new ApplicationDbContext()) { ctx.Emotionals.Add(entity); return(ctx.SaveChanges() == 1); } }
//EMOTIONAL public void InsertEmotional(Emotional Emotional) { _connection.Insert(Emotional); }
public EmotionalAddViewModel(Patient Patient) { this.Patient = Patient; this.Emotional = new Emotional(); AddEmotionalCommand = new Command(ExecuteAddEmotionalCommand); }