Beispiel #1
0
 public async Task <RelationLabelGroup> UpdateRelationLabelGroup(RelationLabelGroup RelationLabelGroupInfo)
 {
     return(await _repository.UpdateAsync(RelationLabelGroupInfo));
 }
Beispiel #2
0
        public async Task <RelationLabelGroup> CreateRelationLabelGroup(RelationLabelGroup RelationLabelGroupInfo)
        {
            RelationLabelGroupInfo.Id = await _repository.InsertAndGetIdAsync(RelationLabelGroupInfo);

            return(RelationLabelGroupInfo);
        }