public int AddProject(ProjectDTO dto) { int id = 0; try { log.Debug(ProjectDTO.FormatProjectDTO(dto)); R_Project t = ProjectDTO.ConvertDTOtoEntity(dto); // add id = Repository.AddProject(t); dto.ProjectId = id; log.Debug("result: 'success', id: " + id); } catch (System.Exception e) { // error log.Error(e.ToString()); throw; } return(id); }
public void DeleteProject(ProjectDTO dto) { try { log.Debug(ProjectDTO.FormatProjectDTO(dto)); R_Project t = ProjectDTO.ConvertDTOtoEntity(dto); // delete Repository.DeleteProject(t); dto.IsDeleted = t.IsDeleted; log.Debug("result: 'success'"); } catch (System.Exception e) { // error log.Error(e.ToString()); throw; } }
public void UpdateProject(ProjectDTO dto) { try { //Requires.NotNull(t); //Requires.PropertyNotNegative(t, "ProjectId"); log.Debug(ProjectDTO.FormatProjectDTO(dto)); R_Project t = ProjectDTO.ConvertDTOtoEntity(dto); // update Repository.UpdateProject(t); log.Debug("result: 'success'"); } catch (System.Exception e) { // error log.Error(e.ToString()); throw; } }