public async Task <ReleaseManage> UpdateReleaseManage(ReleaseManage ReleaseManageInfo) { return(await _repository.UpdateAsync(ReleaseManageInfo)); }
public async Task <ReleaseManage> CreateReleaseManage(ReleaseManage ReleaseManageInfo) { ReleaseManageInfo.Id = await _repository.InsertAndGetIdAsync(ReleaseManageInfo); return(ReleaseManageInfo); }