public async Task <BaseResult> CreateOrUpdate(AttributeModel model, int updateBy = 0, string updateByUserName = "") { var Attribute = model.ToAttribute(); //Cập nhật thông tin chung của thực thể Attribute = Attribute.UpdateCommonInt(updateBy, updateByUserName); if (Attribute.Id > 0) { //Cập nhật return(await Update(Attribute)); } else { //Thêm mới return(await Create(Attribute)); } }