public int CreateOrUpdate(CommonAttachmentsConfig model) { var get = _repo.Get(model.ID); if (get == null) { _repo.Insert(model); } else { _repo.Update(model); } return(model.ID); }
public void Update(CommonAttachmentsConfig model) { _repo.Update(model); }
public int Create(CommonAttachmentsConfig model) { _repo.Insert(model); return(model.ID); }