平安校园
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

IPersonFacesService.cs 277 B

2 ay önce
2 ay önce
2 ay önce
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. }