/// <summary>
 /// Enum types are equal by primary key
 /// </summary>
 public bool Equals(FirmaSystemAuthenticationType other)
 {
     if (other == null)
     {
         return(false);
     }
     return(other.FirmaSystemAuthenticationTypeID == FirmaSystemAuthenticationTypeID);
 }
 public static void DeleteFirmaSystemAuthenticationType(this IQueryable <FirmaSystemAuthenticationType> firmaSystemAuthenticationTypes, FirmaSystemAuthenticationType firmaSystemAuthenticationTypeToDelete)
 {
     DeleteFirmaSystemAuthenticationType(firmaSystemAuthenticationTypes, new List <FirmaSystemAuthenticationType> {
         firmaSystemAuthenticationTypeToDelete
     });
 }