﻿function servicesValidation(source, arguments) {
    var hasChecks = false;
    jQuery(".servicesValidation :checkbox[checked]").each(function() {
        hasChecks = true;
    });
    arguments.IsValid = hasChecks;
}