public bool IsExistCode(string code)
 {
     return(_SessionRepository.Exist(c => c.Code == code && c.StatusId != CommonStatus.DELETE));
 }