public async Task <bool> DeleteEntityDeepAsync(Record entity)
 {
     patientContext.Remove(entity);
     return(await this.SaveChangesAsync());
 }