平安校园
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IPersonFacesService.cs 277 B

2 달 전
2 달 전
2 달 전
12345678
  1. namespace SafeCampus.Application.Services.Business.PersonFacesService;
  2. public interface IPersonFacesService:ITransient
  3. {
  4. Task<bool> BatchAdd(List<PersonFaces> list);
  5. Task<bool> Add(PersonFaces entity);
  6. Task<bool> Delete(string personId, List<string> faceIds);
  7. }