public void UpdateMeetingType(MeetingType m) { using (IDataContext ctx = DataContext.Instance()) { ctx.GetRepository <MeetingType>().Update(m); } }
public void CreateMeetingType(MeetingType t) { using (IDataContext ctx = DataContext.Instance()) { var rep = ctx.GetRepository <MeetingType>(); rep.Insert(t); } }